We recommend using Azure Native.
azure.appplatform.SpringCloudAppMysqlAssociation
Explore with Pulumi AI
Associates a Spring Cloud Application with a MySQL Database.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
{
Location = "West Europe",
});
var exampleSpringCloudService = new Azure.AppPlatform.SpringCloudService("exampleSpringCloudService", new()
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
});
var exampleSpringCloudApp = new Azure.AppPlatform.SpringCloudApp("exampleSpringCloudApp", new()
{
ResourceGroupName = exampleResourceGroup.Name,
ServiceName = exampleSpringCloudService.Name,
});
var exampleServer = new Azure.MySql.Server("exampleServer", new()
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
AdministratorLogin = "mysqladminun",
AdministratorLoginPassword = "H@Sh1CoR3!",
SkuName = "B_Gen5_2",
StorageMb = 5120,
Version = "5.7",
SslEnforcementEnabled = true,
SslMinimalTlsVersionEnforced = "TLS1_2",
});
var exampleDatabase = new Azure.MySql.Database("exampleDatabase", new()
{
ResourceGroupName = exampleResourceGroup.Name,
ServerName = exampleServer.Name,
Charset = "utf8",
Collation = "utf8_unicode_ci",
});
var exampleSpringCloudAppMysqlAssociation = new Azure.AppPlatform.SpringCloudAppMysqlAssociation("exampleSpringCloudAppMysqlAssociation", new()
{
SpringCloudAppId = exampleSpringCloudApp.Id,
MysqlServerId = exampleServer.Id,
DatabaseName = exampleDatabase.Name,
Username = exampleServer.AdministratorLogin,
Password = exampleServer.AdministratorLoginPassword,
});
});
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appplatform"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/mysql"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleSpringCloudService, err := appplatform.NewSpringCloudService(ctx, "exampleSpringCloudService", &appplatform.SpringCloudServiceArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
})
if err != nil {
return err
}
exampleSpringCloudApp, err := appplatform.NewSpringCloudApp(ctx, "exampleSpringCloudApp", &appplatform.SpringCloudAppArgs{
ResourceGroupName: exampleResourceGroup.Name,
ServiceName: exampleSpringCloudService.Name,
})
if err != nil {
return err
}
exampleServer, err := mysql.NewServer(ctx, "exampleServer", &mysql.ServerArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
AdministratorLogin: pulumi.String("mysqladminun"),
AdministratorLoginPassword: pulumi.String("H@Sh1CoR3!"),
SkuName: pulumi.String("B_Gen5_2"),
StorageMb: pulumi.Int(5120),
Version: pulumi.String("5.7"),
SslEnforcementEnabled: pulumi.Bool(true),
SslMinimalTlsVersionEnforced: pulumi.String("TLS1_2"),
})
if err != nil {
return err
}
exampleDatabase, err := mysql.NewDatabase(ctx, "exampleDatabase", &mysql.DatabaseArgs{
ResourceGroupName: exampleResourceGroup.Name,
ServerName: exampleServer.Name,
Charset: pulumi.String("utf8"),
Collation: pulumi.String("utf8_unicode_ci"),
})
if err != nil {
return err
}
_, err = appplatform.NewSpringCloudAppMysqlAssociation(ctx, "exampleSpringCloudAppMysqlAssociation", &appplatform.SpringCloudAppMysqlAssociationArgs{
SpringCloudAppId: exampleSpringCloudApp.ID(),
MysqlServerId: exampleServer.ID(),
DatabaseName: exampleDatabase.Name,
Username: exampleServer.AdministratorLogin,
Password: exampleServer.AdministratorLoginPassword,
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.appplatform.SpringCloudService;
import com.pulumi.azure.appplatform.SpringCloudServiceArgs;
import com.pulumi.azure.appplatform.SpringCloudApp;
import com.pulumi.azure.appplatform.SpringCloudAppArgs;
import com.pulumi.azure.mysql.Server;
import com.pulumi.azure.mysql.ServerArgs;
import com.pulumi.azure.mysql.Database;
import com.pulumi.azure.mysql.DatabaseArgs;
import com.pulumi.azure.appplatform.SpringCloudAppMysqlAssociation;
import com.pulumi.azure.appplatform.SpringCloudAppMysqlAssociationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var exampleSpringCloudService = new SpringCloudService("exampleSpringCloudService", SpringCloudServiceArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location(exampleResourceGroup.location())
.build());
var exampleSpringCloudApp = new SpringCloudApp("exampleSpringCloudApp", SpringCloudAppArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.serviceName(exampleSpringCloudService.name())
.build());
var exampleServer = new Server("exampleServer", ServerArgs.builder()
.location(exampleResourceGroup.location())
.resourceGroupName(exampleResourceGroup.name())
.administratorLogin("mysqladminun")
.administratorLoginPassword("H@Sh1CoR3!")
.skuName("B_Gen5_2")
.storageMb(5120)
.version("5.7")
.sslEnforcementEnabled(true)
.sslMinimalTlsVersionEnforced("TLS1_2")
.build());
var exampleDatabase = new Database("exampleDatabase", DatabaseArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.serverName(exampleServer.name())
.charset("utf8")
.collation("utf8_unicode_ci")
.build());
var exampleSpringCloudAppMysqlAssociation = new SpringCloudAppMysqlAssociation("exampleSpringCloudAppMysqlAssociation", SpringCloudAppMysqlAssociationArgs.builder()
.springCloudAppId(exampleSpringCloudApp.id())
.mysqlServerId(exampleServer.id())
.databaseName(exampleDatabase.name())
.username(exampleServer.administratorLogin())
.password(exampleServer.administratorLoginPassword())
.build());
}
}
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_spring_cloud_service = azure.appplatform.SpringCloudService("exampleSpringCloudService",
resource_group_name=example_resource_group.name,
location=example_resource_group.location)
example_spring_cloud_app = azure.appplatform.SpringCloudApp("exampleSpringCloudApp",
resource_group_name=example_resource_group.name,
service_name=example_spring_cloud_service.name)
example_server = azure.mysql.Server("exampleServer",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
administrator_login="mysqladminun",
administrator_login_password="H@Sh1CoR3!",
sku_name="B_Gen5_2",
storage_mb=5120,
version="5.7",
ssl_enforcement_enabled=True,
ssl_minimal_tls_version_enforced="TLS1_2")
example_database = azure.mysql.Database("exampleDatabase",
resource_group_name=example_resource_group.name,
server_name=example_server.name,
charset="utf8",
collation="utf8_unicode_ci")
example_spring_cloud_app_mysql_association = azure.appplatform.SpringCloudAppMysqlAssociation("exampleSpringCloudAppMysqlAssociation",
spring_cloud_app_id=example_spring_cloud_app.id,
mysql_server_id=example_server.id,
database_name=example_database.name,
username=example_server.administrator_login,
password=example_server.administrator_login_password)
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleSpringCloudService = new azure.appplatform.SpringCloudService("exampleSpringCloudService", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
});
const exampleSpringCloudApp = new azure.appplatform.SpringCloudApp("exampleSpringCloudApp", {
resourceGroupName: exampleResourceGroup.name,
serviceName: exampleSpringCloudService.name,
});
const exampleServer = new azure.mysql.Server("exampleServer", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
administratorLogin: "mysqladminun",
administratorLoginPassword: "H@Sh1CoR3!",
skuName: "B_Gen5_2",
storageMb: 5120,
version: "5.7",
sslEnforcementEnabled: true,
sslMinimalTlsVersionEnforced: "TLS1_2",
});
const exampleDatabase = new azure.mysql.Database("exampleDatabase", {
resourceGroupName: exampleResourceGroup.name,
serverName: exampleServer.name,
charset: "utf8",
collation: "utf8_unicode_ci",
});
const exampleSpringCloudAppMysqlAssociation = new azure.appplatform.SpringCloudAppMysqlAssociation("exampleSpringCloudAppMysqlAssociation", {
springCloudAppId: exampleSpringCloudApp.id,
mysqlServerId: exampleServer.id,
databaseName: exampleDatabase.name,
username: exampleServer.administratorLogin,
password: exampleServer.administratorLoginPassword,
});
resources:
exampleResourceGroup:
type: azure:core:ResourceGroup
properties:
location: West Europe
exampleSpringCloudService:
type: azure:appplatform:SpringCloudService
properties:
resourceGroupName: ${exampleResourceGroup.name}
location: ${exampleResourceGroup.location}
exampleSpringCloudApp:
type: azure:appplatform:SpringCloudApp
properties:
resourceGroupName: ${exampleResourceGroup.name}
serviceName: ${exampleSpringCloudService.name}
exampleServer:
type: azure:mysql:Server
properties:
location: ${exampleResourceGroup.location}
resourceGroupName: ${exampleResourceGroup.name}
administratorLogin: mysqladminun
administratorLoginPassword: H@Sh1CoR3!
skuName: B_Gen5_2
storageMb: 5120
version: '5.7'
sslEnforcementEnabled: true
sslMinimalTlsVersionEnforced: TLS1_2
exampleDatabase:
type: azure:mysql:Database
properties:
resourceGroupName: ${exampleResourceGroup.name}
serverName: ${exampleServer.name}
charset: utf8
collation: utf8_unicode_ci
exampleSpringCloudAppMysqlAssociation:
type: azure:appplatform:SpringCloudAppMysqlAssociation
properties:
springCloudAppId: ${exampleSpringCloudApp.id}
mysqlServerId: ${exampleServer.id}
databaseName: ${exampleDatabase.name}
username: ${exampleServer.administratorLogin}
password: ${exampleServer.administratorLoginPassword}
Create SpringCloudAppMysqlAssociation Resource
new SpringCloudAppMysqlAssociation(name: string, args: SpringCloudAppMysqlAssociationArgs, opts?: CustomResourceOptions);
@overload
def SpringCloudAppMysqlAssociation(resource_name: str,
opts: Optional[ResourceOptions] = None,
database_name: Optional[str] = None,
mysql_server_id: Optional[str] = None,
name: Optional[str] = None,
password: Optional[str] = None,
spring_cloud_app_id: Optional[str] = None,
username: Optional[str] = None)
@overload
def SpringCloudAppMysqlAssociation(resource_name: str,
args: SpringCloudAppMysqlAssociationArgs,
opts: Optional[ResourceOptions] = None)
func NewSpringCloudAppMysqlAssociation(ctx *Context, name string, args SpringCloudAppMysqlAssociationArgs, opts ...ResourceOption) (*SpringCloudAppMysqlAssociation, error)
public SpringCloudAppMysqlAssociation(string name, SpringCloudAppMysqlAssociationArgs args, CustomResourceOptions? opts = null)
public SpringCloudAppMysqlAssociation(String name, SpringCloudAppMysqlAssociationArgs args)
public SpringCloudAppMysqlAssociation(String name, SpringCloudAppMysqlAssociationArgs args, CustomResourceOptions options)
type: azure:appplatform:SpringCloudAppMysqlAssociation
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SpringCloudAppMysqlAssociationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SpringCloudAppMysqlAssociationArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SpringCloudAppMysqlAssociationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SpringCloudAppMysqlAssociationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SpringCloudAppMysqlAssociationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
SpringCloudAppMysqlAssociation Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The SpringCloudAppMysqlAssociation resource accepts the following input properties:
- Database
Name string Specifies the name of the MySQL Database which the Spring Cloud App should be associated with.
- Mysql
Server stringId Specifies the ID of the MySQL Server. Changing this forces a new resource to be created.
- Password string
Specifies the password which should be used when connecting to the MySQL Database from the Spring Cloud App.
- Spring
Cloud stringApp Id Specifies the ID of the Spring Cloud Application where this Association is created. Changing this forces a new resource to be created.
- Username string
Specifies the username which should be used when connecting to the MySQL Database from the Spring Cloud App.
- Name string
Specifies the name of the Spring Cloud Application Association. Changing this forces a new resource to be created.
- Database
Name string Specifies the name of the MySQL Database which the Spring Cloud App should be associated with.
- Mysql
Server stringId Specifies the ID of the MySQL Server. Changing this forces a new resource to be created.
- Password string
Specifies the password which should be used when connecting to the MySQL Database from the Spring Cloud App.
- Spring
Cloud stringApp Id Specifies the ID of the Spring Cloud Application where this Association is created. Changing this forces a new resource to be created.
- Username string
Specifies the username which should be used when connecting to the MySQL Database from the Spring Cloud App.
- Name string
Specifies the name of the Spring Cloud Application Association. Changing this forces a new resource to be created.
- database
Name String Specifies the name of the MySQL Database which the Spring Cloud App should be associated with.
- mysql
Server StringId Specifies the ID of the MySQL Server. Changing this forces a new resource to be created.
- password String
Specifies the password which should be used when connecting to the MySQL Database from the Spring Cloud App.
- spring
Cloud StringApp Id Specifies the ID of the Spring Cloud Application where this Association is created. Changing this forces a new resource to be created.
- username String
Specifies the username which should be used when connecting to the MySQL Database from the Spring Cloud App.
- name String
Specifies the name of the Spring Cloud Application Association. Changing this forces a new resource to be created.
- database
Name string Specifies the name of the MySQL Database which the Spring Cloud App should be associated with.
- mysql
Server stringId Specifies the ID of the MySQL Server. Changing this forces a new resource to be created.
- password string
Specifies the password which should be used when connecting to the MySQL Database from the Spring Cloud App.
- spring
Cloud stringApp Id Specifies the ID of the Spring Cloud Application where this Association is created. Changing this forces a new resource to be created.
- username string
Specifies the username which should be used when connecting to the MySQL Database from the Spring Cloud App.
- name string
Specifies the name of the Spring Cloud Application Association. Changing this forces a new resource to be created.
- database_
name str Specifies the name of the MySQL Database which the Spring Cloud App should be associated with.
- mysql_
server_ strid Specifies the ID of the MySQL Server. Changing this forces a new resource to be created.
- password str
Specifies the password which should be used when connecting to the MySQL Database from the Spring Cloud App.
- spring_
cloud_ strapp_ id Specifies the ID of the Spring Cloud Application where this Association is created. Changing this forces a new resource to be created.
- username str
Specifies the username which should be used when connecting to the MySQL Database from the Spring Cloud App.
- name str
Specifies the name of the Spring Cloud Application Association. Changing this forces a new resource to be created.
- database
Name String Specifies the name of the MySQL Database which the Spring Cloud App should be associated with.
- mysql
Server StringId Specifies the ID of the MySQL Server. Changing this forces a new resource to be created.
- password String
Specifies the password which should be used when connecting to the MySQL Database from the Spring Cloud App.
- spring
Cloud StringApp Id Specifies the ID of the Spring Cloud Application where this Association is created. Changing this forces a new resource to be created.
- username String
Specifies the username which should be used when connecting to the MySQL Database from the Spring Cloud App.
- name String
Specifies the name of the Spring Cloud Application Association. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the SpringCloudAppMysqlAssociation resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Id string
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
- id string
The provider-assigned unique ID for this managed resource.
- id str
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing SpringCloudAppMysqlAssociation Resource
Get an existing SpringCloudAppMysqlAssociation resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SpringCloudAppMysqlAssociationState, opts?: CustomResourceOptions): SpringCloudAppMysqlAssociation
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
database_name: Optional[str] = None,
mysql_server_id: Optional[str] = None,
name: Optional[str] = None,
password: Optional[str] = None,
spring_cloud_app_id: Optional[str] = None,
username: Optional[str] = None) -> SpringCloudAppMysqlAssociation
func GetSpringCloudAppMysqlAssociation(ctx *Context, name string, id IDInput, state *SpringCloudAppMysqlAssociationState, opts ...ResourceOption) (*SpringCloudAppMysqlAssociation, error)
public static SpringCloudAppMysqlAssociation Get(string name, Input<string> id, SpringCloudAppMysqlAssociationState? state, CustomResourceOptions? opts = null)
public static SpringCloudAppMysqlAssociation get(String name, Output<String> id, SpringCloudAppMysqlAssociationState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Database
Name string Specifies the name of the MySQL Database which the Spring Cloud App should be associated with.
- Mysql
Server stringId Specifies the ID of the MySQL Server. Changing this forces a new resource to be created.
- Name string
Specifies the name of the Spring Cloud Application Association. Changing this forces a new resource to be created.
- Password string
Specifies the password which should be used when connecting to the MySQL Database from the Spring Cloud App.
- Spring
Cloud stringApp Id Specifies the ID of the Spring Cloud Application where this Association is created. Changing this forces a new resource to be created.
- Username string
Specifies the username which should be used when connecting to the MySQL Database from the Spring Cloud App.
- Database
Name string Specifies the name of the MySQL Database which the Spring Cloud App should be associated with.
- Mysql
Server stringId Specifies the ID of the MySQL Server. Changing this forces a new resource to be created.
- Name string
Specifies the name of the Spring Cloud Application Association. Changing this forces a new resource to be created.
- Password string
Specifies the password which should be used when connecting to the MySQL Database from the Spring Cloud App.
- Spring
Cloud stringApp Id Specifies the ID of the Spring Cloud Application where this Association is created. Changing this forces a new resource to be created.
- Username string
Specifies the username which should be used when connecting to the MySQL Database from the Spring Cloud App.
- database
Name String Specifies the name of the MySQL Database which the Spring Cloud App should be associated with.
- mysql
Server StringId Specifies the ID of the MySQL Server. Changing this forces a new resource to be created.
- name String
Specifies the name of the Spring Cloud Application Association. Changing this forces a new resource to be created.
- password String
Specifies the password which should be used when connecting to the MySQL Database from the Spring Cloud App.
- spring
Cloud StringApp Id Specifies the ID of the Spring Cloud Application where this Association is created. Changing this forces a new resource to be created.
- username String
Specifies the username which should be used when connecting to the MySQL Database from the Spring Cloud App.
- database
Name string Specifies the name of the MySQL Database which the Spring Cloud App should be associated with.
- mysql
Server stringId Specifies the ID of the MySQL Server. Changing this forces a new resource to be created.
- name string
Specifies the name of the Spring Cloud Application Association. Changing this forces a new resource to be created.
- password string
Specifies the password which should be used when connecting to the MySQL Database from the Spring Cloud App.
- spring
Cloud stringApp Id Specifies the ID of the Spring Cloud Application where this Association is created. Changing this forces a new resource to be created.
- username string
Specifies the username which should be used when connecting to the MySQL Database from the Spring Cloud App.
- database_
name str Specifies the name of the MySQL Database which the Spring Cloud App should be associated with.
- mysql_
server_ strid Specifies the ID of the MySQL Server. Changing this forces a new resource to be created.
- name str
Specifies the name of the Spring Cloud Application Association. Changing this forces a new resource to be created.
- password str
Specifies the password which should be used when connecting to the MySQL Database from the Spring Cloud App.
- spring_
cloud_ strapp_ id Specifies the ID of the Spring Cloud Application where this Association is created. Changing this forces a new resource to be created.
- username str
Specifies the username which should be used when connecting to the MySQL Database from the Spring Cloud App.
- database
Name String Specifies the name of the MySQL Database which the Spring Cloud App should be associated with.
- mysql
Server StringId Specifies the ID of the MySQL Server. Changing this forces a new resource to be created.
- name String
Specifies the name of the Spring Cloud Application Association. Changing this forces a new resource to be created.
- password String
Specifies the password which should be used when connecting to the MySQL Database from the Spring Cloud App.
- spring
Cloud StringApp Id Specifies the ID of the Spring Cloud Application where this Association is created. Changing this forces a new resource to be created.
- username String
Specifies the username which should be used when connecting to the MySQL Database from the Spring Cloud App.
Import
Spring Cloud Application MySQL Association can be imported using the resource id
, e.g.
$ pulumi import azure:appplatform/springCloudAppMysqlAssociation:SpringCloudAppMysqlAssociation example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroup1/providers/Microsoft.AppPlatform/spring/service1/apps/app1/bindings/bind1
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.