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:
- App
Service stringId  - The ID of the data source web app. Changing this forces a new resource to be created.
 - Authentication
Connection
Authentication  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 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. - Client
Type string - Name string
 - The name of the service connection. Changing this forces a new resource to be created.
 - Secret
Store ConnectionSecret Store  - Vnet
Solution string 
- App
Service stringId  - The ID of the data source web app. Changing this forces a new resource to be created.
 - Authentication
Connection
Authentication 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 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. - Client
Type string - Name string
 - The name of the service connection. Changing this forces a new resource to be created.
 - Secret
Store ConnectionSecret Store Args  - Vnet
Solution string 
- app
Service StringId  - The ID of the data source web app. Changing this forces a new resource to be created.
 - authentication
Connection
Authentication  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 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. - client
Type String - name String
 - The name of the service connection. Changing this forces a new resource to be created.
 - secret
Store ConnectionSecret Store  - vnet
Solution String 
- app
Service stringId  - The ID of the data source web app. Changing this forces a new resource to be created.
 - authentication
Connection
Authentication  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 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. - client
Type string - name string
 - The name of the service connection. Changing this forces a new resource to be created.
 - secret
Store ConnectionSecret Store  - vnet
Solution string 
- app_
service_ strid  - The ID of the data source web app. Changing this forces a new resource to be created.
 - authentication
Connection
Authentication 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 
- app
Service 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.
- target
Resource 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. - client
Type String - name String
 - The name of the service connection. Changing this forces a new resource to be created.
 - secret
Store Property Map - vnet
Solution 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.
 
- App
Service stringId  - The ID of the data source web app. Changing this forces a new resource to be created.
 - Authentication
Connection
Authentication  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 string - Name string
 - The name of the service connection. Changing this forces a new resource to be created.
 - Secret
Store ConnectionSecret Store  - Target
Resource 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. - Vnet
Solution string 
- App
Service stringId  - The ID of the data source web app. Changing this forces a new resource to be created.
 - Authentication
Connection
Authentication 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 string - Name string
 - The name of the service connection. Changing this forces a new resource to be created.
 - Secret
Store ConnectionSecret Store Args  - Target
Resource 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. - Vnet
Solution string 
- app
Service StringId  - The ID of the data source web app. Changing this forces a new resource to be created.
 - authentication
Connection
Authentication  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 String - name String
 - The name of the service connection. Changing this forces a new resource to be created.
 - secret
Store ConnectionSecret Store  - target
Resource 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. - vnet
Solution String 
- app
Service stringId  - The ID of the data source web app. Changing this forces a new resource to be created.
 - authentication
Connection
Authentication  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 string - name string
 - The name of the service connection. Changing this forces a new resource to be created.
 - secret
Store ConnectionSecret Store  - target
Resource 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. - vnet
Solution string 
- app_
service_ strid  - The ID of the data source web app. Changing this forces a new resource to be created.
 - authentication
Connection
Authentication 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 
- app
Service 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.
- client
Type String - name String
 - The name of the service connection. Changing this forces a new resource to be created.
 - secret
Store Property Map - target
Resource 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. - vnet
Solution 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. - Client
Id 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. - Principal
Id 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. - Subscription
Id 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. - Client
Id 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. - Principal
Id 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. - Subscription
Id 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. - client
Id 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. - principal
Id 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. - subscription
Id 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. - client
Id 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. - principal
Id 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. - subscription
Id 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. - client
Id 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. - principal
Id 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. - subscription
Id String - Subscription ID for 
userAssignedIdentity.subscription_idandclient_idshould be either both specified or both not specified. 
ConnectionSecretStore, ConnectionSecretStoreArgs      
- Key
Vault stringId  - The key vault id to store secret.
 
- Key
Vault stringId  - The key vault id to store secret.
 
- key
Vault StringId  - The key vault id to store secret.
 
- key
Vault stringId  - The key vault id to store secret.
 
- key_
vault_ strid  - The key vault id to store secret.
 
- key
Vault 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.