We recommend using Azure Native.
azure.appservice.Connection
Explore with Pulumi AI
Manages a service connector for app service.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleAccount:
    type: azure:cosmosdb:Account
    name: example
    properties:
      name: example-cosmosdb-account
      location: ${example.location}
      resourceGroupName: ${example.name}
      offerType: Standard
      kind: GlobalDocumentDB
      consistencyPolicy:
        consistencyLevel: BoundedStaleness
        maxIntervalInSeconds: 10
        maxStalenessPrefix: 200
      geoLocations:
        - location: ${example.location}
          failoverPriority: 0
  exampleSqlDatabase:
    type: azure:cosmosdb:SqlDatabase
    name: example
    properties:
      name: cosmos-sql-db
      resourceGroupName: ${exampleAccount.resourceGroupName}
      accountName: ${exampleAccount.name}
      throughput: 400
  exampleSqlContainer:
    type: azure:cosmosdb:SqlContainer
    name: example
    properties:
      name: example-container
      resourceGroupName: ${exampleAccount.resourceGroupName}
      accountName: ${exampleAccount.name}
      databaseName: ${exampleSqlDatabase.name}
      partitionKeyPath: /definition
  exampleServicePlan:
    type: azure:appservice:ServicePlan
    name: example
    properties:
      location: ${example.location}
      name: example-serviceplan
      resourceGroupName: ${example.name}
      skuName: P1v2
      osType: Linux
  exampleLinuxWebApp:
    type: azure:appservice:LinuxWebApp
    name: example
    properties:
      location: ${example.location}
      name: example-linuxwebapp
      resourceGroupName: ${example.name}
      servicePlanId: ${exampleServicePlan.id}
      siteConfig: {}
  exampleConnection:
    type: azure:appservice:Connection
    name: example
    properties:
      name: example-serviceconnector
      appServiceId: ${exampleLinuxWebApp.id}
      targetResourceId: ${exampleSqlDatabase.id}
      authentication:
        type: systemAssignedIdentity
Create Connection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Connection(name: string, args: ConnectionArgs, opts?: CustomResourceOptions);@overload
def Connection(resource_name: str,
               args: ConnectionArgs,
               opts: Optional[ResourceOptions] = None)
@overload
def Connection(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               app_service_id: Optional[str] = None,
               authentication: Optional[ConnectionAuthenticationArgs] = None,
               target_resource_id: Optional[str] = None,
               client_type: Optional[str] = None,
               name: Optional[str] = None,
               secret_store: Optional[ConnectionSecretStoreArgs] = None,
               vnet_solution: Optional[str] = None)func NewConnection(ctx *Context, name string, args ConnectionArgs, opts ...ResourceOption) (*Connection, error)public Connection(string name, ConnectionArgs args, CustomResourceOptions? opts = null)
public Connection(String name, ConnectionArgs args)
public Connection(String name, ConnectionArgs args, CustomResourceOptions options)
type: azure:appservice:Connection
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ConnectionArgs
- 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 ConnectionArgs
- 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 ConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConnectionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var connectionResource = new Azure.AppService.Connection("connectionResource", new()
{
    AppServiceId = "string",
    Authentication = new Azure.AppService.Inputs.ConnectionAuthenticationArgs
    {
        Type = "string",
        Certificate = "string",
        ClientId = "string",
        Name = "string",
        PrincipalId = "string",
        Secret = "string",
        SubscriptionId = "string",
    },
    TargetResourceId = "string",
    ClientType = "string",
    Name = "string",
    SecretStore = new Azure.AppService.Inputs.ConnectionSecretStoreArgs
    {
        KeyVaultId = "string",
    },
    VnetSolution = "string",
});
example, err := appservice.NewConnection(ctx, "connectionResource", &appservice.ConnectionArgs{
	AppServiceId: pulumi.String("string"),
	Authentication: &appservice.ConnectionAuthenticationArgs{
		Type:           pulumi.String("string"),
		Certificate:    pulumi.String("string"),
		ClientId:       pulumi.String("string"),
		Name:           pulumi.String("string"),
		PrincipalId:    pulumi.String("string"),
		Secret:         pulumi.String("string"),
		SubscriptionId: pulumi.String("string"),
	},
	TargetResourceId: pulumi.String("string"),
	ClientType:       pulumi.String("string"),
	Name:             pulumi.String("string"),
	SecretStore: &appservice.ConnectionSecretStoreArgs{
		KeyVaultId: pulumi.String("string"),
	},
	VnetSolution: pulumi.String("string"),
})
var connectionResource = new Connection("connectionResource", ConnectionArgs.builder()
    .appServiceId("string")
    .authentication(ConnectionAuthenticationArgs.builder()
        .type("string")
        .certificate("string")
        .clientId("string")
        .name("string")
        .principalId("string")
        .secret("string")
        .subscriptionId("string")
        .build())
    .targetResourceId("string")
    .clientType("string")
    .name("string")
    .secretStore(ConnectionSecretStoreArgs.builder()
        .keyVaultId("string")
        .build())
    .vnetSolution("string")
    .build());
connection_resource = azure.appservice.Connection("connectionResource",
    app_service_id="string",
    authentication={
        "type": "string",
        "certificate": "string",
        "client_id": "string",
        "name": "string",
        "principal_id": "string",
        "secret": "string",
        "subscription_id": "string",
    },
    target_resource_id="string",
    client_type="string",
    name="string",
    secret_store={
        "key_vault_id": "string",
    },
    vnet_solution="string")
const connectionResource = new azure.appservice.Connection("connectionResource", {
    appServiceId: "string",
    authentication: {
        type: "string",
        certificate: "string",
        clientId: "string",
        name: "string",
        principalId: "string",
        secret: "string",
        subscriptionId: "string",
    },
    targetResourceId: "string",
    clientType: "string",
    name: "string",
    secretStore: {
        keyVaultId: "string",
    },
    vnetSolution: "string",
});
type: azure:appservice:Connection
properties:
    appServiceId: string
    authentication:
        certificate: string
        clientId: string
        name: string
        principalId: string
        secret: string
        subscriptionId: string
        type: string
    clientType: string
    name: string
    secretStore:
        keyVaultId: string
    targetResourceId: string
    vnetSolution: string
Connection Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Connection resource accepts the following input properties:
- AppService stringId 
- The ID of the data source web app. Changing this forces a new resource to be created.
- Authentication
ConnectionAuthentication 
- The authentication info. An - authenticationblock as defined below.- Note: If a Managed Identity is used, this will need to be configured on the App Service. 
- TargetResource stringId 
- The ID of the target resource. Changing this forces a new resource to be created. Possible target resources are Postgres,PostgresFlexible,Mysql,Sql,Redis,RedisEnterprise,CosmosCassandra,CosmosGremlin,CosmosMongo,CosmosSql,CosmosTable,StorageBlob,StorageQueue,StorageFile,StorageTable,AppConfig,EventHub,ServiceBus,SignalR,WebPubSub,ConfluentKafka. The integration guide can be found here.
- ClientType string
- Name string
- The name of the service connection. Changing this forces a new resource to be created.
- SecretStore ConnectionSecret Store 
- VnetSolution string
- AppService stringId 
- The ID of the data source web app. Changing this forces a new resource to be created.
- Authentication
ConnectionAuthentication Args 
- The authentication info. An - authenticationblock as defined below.- Note: If a Managed Identity is used, this will need to be configured on the App Service. 
- TargetResource stringId 
- The ID of the target resource. Changing this forces a new resource to be created. Possible target resources are Postgres,PostgresFlexible,Mysql,Sql,Redis,RedisEnterprise,CosmosCassandra,CosmosGremlin,CosmosMongo,CosmosSql,CosmosTable,StorageBlob,StorageQueue,StorageFile,StorageTable,AppConfig,EventHub,ServiceBus,SignalR,WebPubSub,ConfluentKafka. The integration guide can be found here.
- ClientType string
- Name string
- The name of the service connection. Changing this forces a new resource to be created.
- SecretStore ConnectionSecret Store Args 
- VnetSolution string
- appService StringId 
- The ID of the data source web app. Changing this forces a new resource to be created.
- authentication
ConnectionAuthentication 
- The authentication info. An - authenticationblock as defined below.- Note: If a Managed Identity is used, this will need to be configured on the App Service. 
- targetResource StringId 
- The ID of the target resource. Changing this forces a new resource to be created. Possible target resources are Postgres,PostgresFlexible,Mysql,Sql,Redis,RedisEnterprise,CosmosCassandra,CosmosGremlin,CosmosMongo,CosmosSql,CosmosTable,StorageBlob,StorageQueue,StorageFile,StorageTable,AppConfig,EventHub,ServiceBus,SignalR,WebPubSub,ConfluentKafka. The integration guide can be found here.
- clientType String
- name String
- The name of the service connection. Changing this forces a new resource to be created.
- secretStore ConnectionSecret Store 
- vnetSolution String
- appService stringId 
- The ID of the data source web app. Changing this forces a new resource to be created.
- authentication
ConnectionAuthentication 
- The authentication info. An - authenticationblock as defined below.- Note: If a Managed Identity is used, this will need to be configured on the App Service. 
- targetResource stringId 
- The ID of the target resource. Changing this forces a new resource to be created. Possible target resources are Postgres,PostgresFlexible,Mysql,Sql,Redis,RedisEnterprise,CosmosCassandra,CosmosGremlin,CosmosMongo,CosmosSql,CosmosTable,StorageBlob,StorageQueue,StorageFile,StorageTable,AppConfig,EventHub,ServiceBus,SignalR,WebPubSub,ConfluentKafka. The integration guide can be found here.
- clientType string
- name string
- The name of the service connection. Changing this forces a new resource to be created.
- secretStore ConnectionSecret Store 
- vnetSolution string
- app_service_ strid 
- The ID of the data source web app. Changing this forces a new resource to be created.
- authentication
ConnectionAuthentication Args 
- The authentication info. An - authenticationblock as defined below.- Note: If a Managed Identity is used, this will need to be configured on the App Service. 
- target_resource_ strid 
- The ID of the target resource. Changing this forces a new resource to be created. Possible target resources are Postgres,PostgresFlexible,Mysql,Sql,Redis,RedisEnterprise,CosmosCassandra,CosmosGremlin,CosmosMongo,CosmosSql,CosmosTable,StorageBlob,StorageQueue,StorageFile,StorageTable,AppConfig,EventHub,ServiceBus,SignalR,WebPubSub,ConfluentKafka. The integration guide can be found here.
- client_type str
- name str
- The name of the service connection. Changing this forces a new resource to be created.
- secret_store ConnectionSecret Store Args 
- vnet_solution str
- appService StringId 
- The ID of the data source web app. Changing this forces a new resource to be created.
- authentication Property Map
- The authentication info. An - authenticationblock as defined below.- Note: If a Managed Identity is used, this will need to be configured on the App Service. 
- targetResource StringId 
- The ID of the target resource. Changing this forces a new resource to be created. Possible target resources are Postgres,PostgresFlexible,Mysql,Sql,Redis,RedisEnterprise,CosmosCassandra,CosmosGremlin,CosmosMongo,CosmosSql,CosmosTable,StorageBlob,StorageQueue,StorageFile,StorageTable,AppConfig,EventHub,ServiceBus,SignalR,WebPubSub,ConfluentKafka. The integration guide can be found here.
- clientType String
- name String
- The name of the service connection. Changing this forces a new resource to be created.
- secretStore Property Map
- vnetSolution String
Outputs
All input properties are implicitly available as output properties. Additionally, the Connection 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 Connection Resource
Get an existing Connection 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?: ConnectionState, opts?: CustomResourceOptions): Connection@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        app_service_id: Optional[str] = None,
        authentication: Optional[ConnectionAuthenticationArgs] = None,
        client_type: Optional[str] = None,
        name: Optional[str] = None,
        secret_store: Optional[ConnectionSecretStoreArgs] = None,
        target_resource_id: Optional[str] = None,
        vnet_solution: Optional[str] = None) -> Connectionfunc GetConnection(ctx *Context, name string, id IDInput, state *ConnectionState, opts ...ResourceOption) (*Connection, error)public static Connection Get(string name, Input<string> id, ConnectionState? state, CustomResourceOptions? opts = null)public static Connection get(String name, Output<String> id, ConnectionState state, CustomResourceOptions options)resources:  _:    type: azure:appservice:Connection    get:      id: ${id}- 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.
- AppService stringId 
- The ID of the data source web app. Changing this forces a new resource to be created.
- Authentication
ConnectionAuthentication 
- The authentication info. An - authenticationblock as defined below.- Note: If a Managed Identity is used, this will need to be configured on the App Service. 
- ClientType string
- Name string
- The name of the service connection. Changing this forces a new resource to be created.
- SecretStore ConnectionSecret Store 
- TargetResource stringId 
- The ID of the target resource. Changing this forces a new resource to be created. Possible target resources are Postgres,PostgresFlexible,Mysql,Sql,Redis,RedisEnterprise,CosmosCassandra,CosmosGremlin,CosmosMongo,CosmosSql,CosmosTable,StorageBlob,StorageQueue,StorageFile,StorageTable,AppConfig,EventHub,ServiceBus,SignalR,WebPubSub,ConfluentKafka. The integration guide can be found here.
- VnetSolution string
- AppService stringId 
- The ID of the data source web app. Changing this forces a new resource to be created.
- Authentication
ConnectionAuthentication Args 
- The authentication info. An - authenticationblock as defined below.- Note: If a Managed Identity is used, this will need to be configured on the App Service. 
- ClientType string
- Name string
- The name of the service connection. Changing this forces a new resource to be created.
- SecretStore ConnectionSecret Store Args 
- TargetResource stringId 
- The ID of the target resource. Changing this forces a new resource to be created. Possible target resources are Postgres,PostgresFlexible,Mysql,Sql,Redis,RedisEnterprise,CosmosCassandra,CosmosGremlin,CosmosMongo,CosmosSql,CosmosTable,StorageBlob,StorageQueue,StorageFile,StorageTable,AppConfig,EventHub,ServiceBus,SignalR,WebPubSub,ConfluentKafka. The integration guide can be found here.
- VnetSolution string
- appService StringId 
- The ID of the data source web app. Changing this forces a new resource to be created.
- authentication
ConnectionAuthentication 
- The authentication info. An - authenticationblock as defined below.- Note: If a Managed Identity is used, this will need to be configured on the App Service. 
- clientType String
- name String
- The name of the service connection. Changing this forces a new resource to be created.
- secretStore ConnectionSecret Store 
- targetResource StringId 
- The ID of the target resource. Changing this forces a new resource to be created. Possible target resources are Postgres,PostgresFlexible,Mysql,Sql,Redis,RedisEnterprise,CosmosCassandra,CosmosGremlin,CosmosMongo,CosmosSql,CosmosTable,StorageBlob,StorageQueue,StorageFile,StorageTable,AppConfig,EventHub,ServiceBus,SignalR,WebPubSub,ConfluentKafka. The integration guide can be found here.
- vnetSolution String
- appService stringId 
- The ID of the data source web app. Changing this forces a new resource to be created.
- authentication
ConnectionAuthentication 
- The authentication info. An - authenticationblock as defined below.- Note: If a Managed Identity is used, this will need to be configured on the App Service. 
- clientType string
- name string
- The name of the service connection. Changing this forces a new resource to be created.
- secretStore ConnectionSecret Store 
- targetResource stringId 
- The ID of the target resource. Changing this forces a new resource to be created. Possible target resources are Postgres,PostgresFlexible,Mysql,Sql,Redis,RedisEnterprise,CosmosCassandra,CosmosGremlin,CosmosMongo,CosmosSql,CosmosTable,StorageBlob,StorageQueue,StorageFile,StorageTable,AppConfig,EventHub,ServiceBus,SignalR,WebPubSub,ConfluentKafka. The integration guide can be found here.
- vnetSolution string
- app_service_ strid 
- The ID of the data source web app. Changing this forces a new resource to be created.
- authentication
ConnectionAuthentication Args 
- The authentication info. An - authenticationblock as defined below.- Note: If a Managed Identity is used, this will need to be configured on the App Service. 
- client_type str
- name str
- The name of the service connection. Changing this forces a new resource to be created.
- secret_store ConnectionSecret Store Args 
- target_resource_ strid 
- The ID of the target resource. Changing this forces a new resource to be created. Possible target resources are Postgres,PostgresFlexible,Mysql,Sql,Redis,RedisEnterprise,CosmosCassandra,CosmosGremlin,CosmosMongo,CosmosSql,CosmosTable,StorageBlob,StorageQueue,StorageFile,StorageTable,AppConfig,EventHub,ServiceBus,SignalR,WebPubSub,ConfluentKafka. The integration guide can be found here.
- vnet_solution str
- appService StringId 
- The ID of the data source web app. Changing this forces a new resource to be created.
- authentication Property Map
- The authentication info. An - authenticationblock as defined below.- Note: If a Managed Identity is used, this will need to be configured on the App Service. 
- clientType String
- name String
- The name of the service connection. Changing this forces a new resource to be created.
- secretStore Property Map
- targetResource StringId 
- The ID of the target resource. Changing this forces a new resource to be created. Possible target resources are Postgres,PostgresFlexible,Mysql,Sql,Redis,RedisEnterprise,CosmosCassandra,CosmosGremlin,CosmosMongo,CosmosSql,CosmosTable,StorageBlob,StorageQueue,StorageFile,StorageTable,AppConfig,EventHub,ServiceBus,SignalR,WebPubSub,ConfluentKafka. The integration guide can be found here.
- vnetSolution String
Supporting Types
ConnectionAuthentication, ConnectionAuthenticationArgs    
- Type string
- The authentication type. Possible values are systemAssignedIdentity,userAssignedIdentity,servicePrincipalSecret,servicePrincipalCertificate,secret. Changing this forces a new resource to be created.
- Certificate string
- Service principal certificate for servicePrincipalauth. Should be specified whentypeis set toservicePrincipalCertificate.
- ClientId string
- Client ID for userAssignedIdentityorservicePrincipalauth. Should be specified whentypeis set toservicePrincipalSecretorservicePrincipalCertificate. Whentypeis set touserAssignedIdentity,client_idandsubscription_idshould be either both specified or both not specified.
- Name string
- Username or account name for secret auth. nameandsecretshould be either both specified or both not specified whentypeis set tosecret.
- PrincipalId string
- Principal ID for servicePrincipalauth. Should be specified whentypeis set toservicePrincipalSecretorservicePrincipalCertificate.
- Secret string
- Password or account key for secret auth. secretandnameshould be either both specified or both not specified whentypeis set tosecret.
- SubscriptionId string
- Subscription ID for userAssignedIdentity.subscription_idandclient_idshould be either both specified or both not specified.
- Type string
- The authentication type. Possible values are systemAssignedIdentity,userAssignedIdentity,servicePrincipalSecret,servicePrincipalCertificate,secret. Changing this forces a new resource to be created.
- Certificate string
- Service principal certificate for servicePrincipalauth. Should be specified whentypeis set toservicePrincipalCertificate.
- ClientId string
- Client ID for userAssignedIdentityorservicePrincipalauth. Should be specified whentypeis set toservicePrincipalSecretorservicePrincipalCertificate. Whentypeis set touserAssignedIdentity,client_idandsubscription_idshould be either both specified or both not specified.
- Name string
- Username or account name for secret auth. nameandsecretshould be either both specified or both not specified whentypeis set tosecret.
- PrincipalId string
- Principal ID for servicePrincipalauth. Should be specified whentypeis set toservicePrincipalSecretorservicePrincipalCertificate.
- Secret string
- Password or account key for secret auth. secretandnameshould be either both specified or both not specified whentypeis set tosecret.
- SubscriptionId string
- Subscription ID for userAssignedIdentity.subscription_idandclient_idshould be either both specified or both not specified.
- type String
- The authentication type. Possible values are systemAssignedIdentity,userAssignedIdentity,servicePrincipalSecret,servicePrincipalCertificate,secret. Changing this forces a new resource to be created.
- certificate String
- Service principal certificate for servicePrincipalauth. Should be specified whentypeis set toservicePrincipalCertificate.
- clientId String
- Client ID for userAssignedIdentityorservicePrincipalauth. Should be specified whentypeis set toservicePrincipalSecretorservicePrincipalCertificate. Whentypeis set touserAssignedIdentity,client_idandsubscription_idshould be either both specified or both not specified.
- name String
- Username or account name for secret auth. nameandsecretshould be either both specified or both not specified whentypeis set tosecret.
- principalId String
- Principal ID for servicePrincipalauth. Should be specified whentypeis set toservicePrincipalSecretorservicePrincipalCertificate.
- secret String
- Password or account key for secret auth. secretandnameshould be either both specified or both not specified whentypeis set tosecret.
- subscriptionId String
- Subscription ID for userAssignedIdentity.subscription_idandclient_idshould be either both specified or both not specified.
- type string
- The authentication type. Possible values are systemAssignedIdentity,userAssignedIdentity,servicePrincipalSecret,servicePrincipalCertificate,secret. Changing this forces a new resource to be created.
- certificate string
- Service principal certificate for servicePrincipalauth. Should be specified whentypeis set toservicePrincipalCertificate.
- clientId string
- Client ID for userAssignedIdentityorservicePrincipalauth. Should be specified whentypeis set toservicePrincipalSecretorservicePrincipalCertificate. Whentypeis set touserAssignedIdentity,client_idandsubscription_idshould be either both specified or both not specified.
- name string
- Username or account name for secret auth. nameandsecretshould be either both specified or both not specified whentypeis set tosecret.
- principalId string
- Principal ID for servicePrincipalauth. Should be specified whentypeis set toservicePrincipalSecretorservicePrincipalCertificate.
- secret string
- Password or account key for secret auth. secretandnameshould be either both specified or both not specified whentypeis set tosecret.
- subscriptionId string
- Subscription ID for userAssignedIdentity.subscription_idandclient_idshould be either both specified or both not specified.
- type str
- The authentication type. Possible values are systemAssignedIdentity,userAssignedIdentity,servicePrincipalSecret,servicePrincipalCertificate,secret. Changing this forces a new resource to be created.
- certificate str
- Service principal certificate for servicePrincipalauth. Should be specified whentypeis set toservicePrincipalCertificate.
- client_id str
- Client ID for userAssignedIdentityorservicePrincipalauth. Should be specified whentypeis set toservicePrincipalSecretorservicePrincipalCertificate. Whentypeis set touserAssignedIdentity,client_idandsubscription_idshould be either both specified or both not specified.
- name str
- Username or account name for secret auth. nameandsecretshould be either both specified or both not specified whentypeis set tosecret.
- principal_id str
- Principal ID for servicePrincipalauth. Should be specified whentypeis set toservicePrincipalSecretorservicePrincipalCertificate.
- secret str
- Password or account key for secret auth. secretandnameshould be either both specified or both not specified whentypeis set tosecret.
- subscription_id str
- Subscription ID for userAssignedIdentity.subscription_idandclient_idshould be either both specified or both not specified.
- type String
- The authentication type. Possible values are systemAssignedIdentity,userAssignedIdentity,servicePrincipalSecret,servicePrincipalCertificate,secret. Changing this forces a new resource to be created.
- certificate String
- Service principal certificate for servicePrincipalauth. Should be specified whentypeis set toservicePrincipalCertificate.
- clientId String
- Client ID for userAssignedIdentityorservicePrincipalauth. Should be specified whentypeis set toservicePrincipalSecretorservicePrincipalCertificate. Whentypeis set touserAssignedIdentity,client_idandsubscription_idshould be either both specified or both not specified.
- name String
- Username or account name for secret auth. nameandsecretshould be either both specified or both not specified whentypeis set tosecret.
- principalId String
- Principal ID for servicePrincipalauth. Should be specified whentypeis set toservicePrincipalSecretorservicePrincipalCertificate.
- secret String
- Password or account key for secret auth. secretandnameshould be either both specified or both not specified whentypeis set tosecret.
- subscriptionId String
- Subscription ID for userAssignedIdentity.subscription_idandclient_idshould be either both specified or both not specified.
ConnectionSecretStore, ConnectionSecretStoreArgs      
- KeyVault stringId 
- The key vault id to store secret.
- KeyVault stringId 
- The key vault id to store secret.
- keyVault StringId 
- The key vault id to store secret.
- keyVault stringId 
- The key vault id to store secret.
- key_vault_ strid 
- The key vault id to store secret.
- keyVault StringId 
- The key vault id to store secret.
Import
Service Connector for app service can be imported using the resource id, e.g.
$ pulumi import azure:appservice/connection:Connection example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Web/sites/webapp/providers/Microsoft.ServiceLinker/linkers/serviceconnector1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the azurermTerraform Provider.