We recommend using Azure Native.
azure.appconfiguration.ConfigurationStore
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const appconf = new azure.appconfiguration.ConfigurationStore("appconf", {
    name: "appConf1",
    resourceGroupName: example.name,
    location: example.location,
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
appconf = azure.appconfiguration.ConfigurationStore("appconf",
    name="appConf1",
    resource_group_name=example.name,
    location=example.location)
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/appconfiguration"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		_, err = appconfiguration.NewConfigurationStore(ctx, "appconf", &appconfiguration.ConfigurationStoreArgs{
			Name:              pulumi.String("appConf1"),
			ResourceGroupName: example.Name,
			Location:          example.Location,
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });
    var appconf = new Azure.AppConfiguration.ConfigurationStore("appconf", new()
    {
        Name = "appConf1",
        ResourceGroupName = example.Name,
        Location = example.Location,
    });
});
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.appconfiguration.ConfigurationStore;
import com.pulumi.azure.appconfiguration.ConfigurationStoreArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());
        var appconf = new ConfigurationStore("appconf", ConfigurationStoreArgs.builder()
            .name("appConf1")
            .resourceGroupName(example.name())
            .location(example.location())
            .build());
    }
}
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  appconf:
    type: azure:appconfiguration:ConfigurationStore
    properties:
      name: appConf1
      resourceGroupName: ${example.name}
      location: ${example.location}
Encryption)
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const exampleUserAssignedIdentity = new azure.authorization.UserAssignedIdentity("example", {
    name: "example-identity",
    location: example.location,
    resourceGroupName: example.name,
});
const current = azure.core.getClientConfig({});
const exampleKeyVault = new azure.keyvault.KeyVault("example", {
    name: "exampleKVt123",
    location: example.location,
    resourceGroupName: example.name,
    tenantId: current.then(current => current.tenantId),
    skuName: "standard",
    softDeleteRetentionDays: 7,
    purgeProtectionEnabled: true,
});
const server = new azure.keyvault.AccessPolicy("server", {
    keyVaultId: exampleKeyVault.id,
    tenantId: current.then(current => current.tenantId),
    objectId: exampleUserAssignedIdentity.principalId,
    keyPermissions: [
        "Get",
        "UnwrapKey",
        "WrapKey",
    ],
    secretPermissions: ["Get"],
});
const client = new azure.keyvault.AccessPolicy("client", {
    keyVaultId: exampleKeyVault.id,
    tenantId: current.then(current => current.tenantId),
    objectId: current.then(current => current.objectId),
    keyPermissions: [
        "Get",
        "Create",
        "Delete",
        "List",
        "Restore",
        "Recover",
        "UnwrapKey",
        "WrapKey",
        "Purge",
        "Encrypt",
        "Decrypt",
        "Sign",
        "Verify",
        "GetRotationPolicy",
    ],
    secretPermissions: ["Get"],
});
const exampleKey = new azure.keyvault.Key("example", {
    name: "exampleKVkey",
    keyVaultId: exampleKeyVault.id,
    keyType: "RSA",
    keySize: 2048,
    keyOpts: [
        "decrypt",
        "encrypt",
        "sign",
        "unwrapKey",
        "verify",
        "wrapKey",
    ],
}, {
    dependsOn: [
        client,
        server,
    ],
});
const exampleConfigurationStore = new azure.appconfiguration.ConfigurationStore("example", {
    name: "appConf2",
    resourceGroupName: example.name,
    location: example.location,
    sku: "standard",
    localAuthEnabled: true,
    publicNetworkAccess: "Enabled",
    purgeProtectionEnabled: false,
    softDeleteRetentionDays: 1,
    identity: {
        type: "UserAssigned",
        identityIds: [exampleUserAssignedIdentity.id],
    },
    encryption: {
        keyVaultKeyIdentifier: exampleKey.id,
        identityClientId: exampleUserAssignedIdentity.clientId,
    },
    replicas: [{
        name: "replica1",
        location: "West US",
    }],
    tags: {
        environment: "development",
    },
}, {
    dependsOn: [
        client,
        server,
    ],
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_user_assigned_identity = azure.authorization.UserAssignedIdentity("example",
    name="example-identity",
    location=example.location,
    resource_group_name=example.name)
current = azure.core.get_client_config()
example_key_vault = azure.keyvault.KeyVault("example",
    name="exampleKVt123",
    location=example.location,
    resource_group_name=example.name,
    tenant_id=current.tenant_id,
    sku_name="standard",
    soft_delete_retention_days=7,
    purge_protection_enabled=True)
server = azure.keyvault.AccessPolicy("server",
    key_vault_id=example_key_vault.id,
    tenant_id=current.tenant_id,
    object_id=example_user_assigned_identity.principal_id,
    key_permissions=[
        "Get",
        "UnwrapKey",
        "WrapKey",
    ],
    secret_permissions=["Get"])
client = azure.keyvault.AccessPolicy("client",
    key_vault_id=example_key_vault.id,
    tenant_id=current.tenant_id,
    object_id=current.object_id,
    key_permissions=[
        "Get",
        "Create",
        "Delete",
        "List",
        "Restore",
        "Recover",
        "UnwrapKey",
        "WrapKey",
        "Purge",
        "Encrypt",
        "Decrypt",
        "Sign",
        "Verify",
        "GetRotationPolicy",
    ],
    secret_permissions=["Get"])
example_key = azure.keyvault.Key("example",
    name="exampleKVkey",
    key_vault_id=example_key_vault.id,
    key_type="RSA",
    key_size=2048,
    key_opts=[
        "decrypt",
        "encrypt",
        "sign",
        "unwrapKey",
        "verify",
        "wrapKey",
    ],
    opts = pulumi.ResourceOptions(depends_on=[
            client,
            server,
        ]))
example_configuration_store = azure.appconfiguration.ConfigurationStore("example",
    name="appConf2",
    resource_group_name=example.name,
    location=example.location,
    sku="standard",
    local_auth_enabled=True,
    public_network_access="Enabled",
    purge_protection_enabled=False,
    soft_delete_retention_days=1,
    identity={
        "type": "UserAssigned",
        "identity_ids": [example_user_assigned_identity.id],
    },
    encryption={
        "key_vault_key_identifier": example_key.id,
        "identity_client_id": example_user_assigned_identity.client_id,
    },
    replicas=[{
        "name": "replica1",
        "location": "West US",
    }],
    tags={
        "environment": "development",
    },
    opts = pulumi.ResourceOptions(depends_on=[
            client,
            server,
        ]))
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/appconfiguration"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/authorization"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/keyvault"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleUserAssignedIdentity, err := authorization.NewUserAssignedIdentity(ctx, "example", &authorization.UserAssignedIdentityArgs{
			Name:              pulumi.String("example-identity"),
			Location:          example.Location,
			ResourceGroupName: example.Name,
		})
		if err != nil {
			return err
		}
		current, err := core.GetClientConfig(ctx, map[string]interface{}{}, nil)
		if err != nil {
			return err
		}
		exampleKeyVault, err := keyvault.NewKeyVault(ctx, "example", &keyvault.KeyVaultArgs{
			Name:                    pulumi.String("exampleKVt123"),
			Location:                example.Location,
			ResourceGroupName:       example.Name,
			TenantId:                pulumi.String(current.TenantId),
			SkuName:                 pulumi.String("standard"),
			SoftDeleteRetentionDays: pulumi.Int(7),
			PurgeProtectionEnabled:  pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		server, err := keyvault.NewAccessPolicy(ctx, "server", &keyvault.AccessPolicyArgs{
			KeyVaultId: exampleKeyVault.ID(),
			TenantId:   pulumi.String(current.TenantId),
			ObjectId:   exampleUserAssignedIdentity.PrincipalId,
			KeyPermissions: pulumi.StringArray{
				pulumi.String("Get"),
				pulumi.String("UnwrapKey"),
				pulumi.String("WrapKey"),
			},
			SecretPermissions: pulumi.StringArray{
				pulumi.String("Get"),
			},
		})
		if err != nil {
			return err
		}
		client, err := keyvault.NewAccessPolicy(ctx, "client", &keyvault.AccessPolicyArgs{
			KeyVaultId: exampleKeyVault.ID(),
			TenantId:   pulumi.String(current.TenantId),
			ObjectId:   pulumi.String(current.ObjectId),
			KeyPermissions: pulumi.StringArray{
				pulumi.String("Get"),
				pulumi.String("Create"),
				pulumi.String("Delete"),
				pulumi.String("List"),
				pulumi.String("Restore"),
				pulumi.String("Recover"),
				pulumi.String("UnwrapKey"),
				pulumi.String("WrapKey"),
				pulumi.String("Purge"),
				pulumi.String("Encrypt"),
				pulumi.String("Decrypt"),
				pulumi.String("Sign"),
				pulumi.String("Verify"),
				pulumi.String("GetRotationPolicy"),
			},
			SecretPermissions: pulumi.StringArray{
				pulumi.String("Get"),
			},
		})
		if err != nil {
			return err
		}
		exampleKey, err := keyvault.NewKey(ctx, "example", &keyvault.KeyArgs{
			Name:       pulumi.String("exampleKVkey"),
			KeyVaultId: exampleKeyVault.ID(),
			KeyType:    pulumi.String("RSA"),
			KeySize:    pulumi.Int(2048),
			KeyOpts: pulumi.StringArray{
				pulumi.String("decrypt"),
				pulumi.String("encrypt"),
				pulumi.String("sign"),
				pulumi.String("unwrapKey"),
				pulumi.String("verify"),
				pulumi.String("wrapKey"),
			},
		}, pulumi.DependsOn([]pulumi.Resource{
			client,
			server,
		}))
		if err != nil {
			return err
		}
		_, err = appconfiguration.NewConfigurationStore(ctx, "example", &appconfiguration.ConfigurationStoreArgs{
			Name:                    pulumi.String("appConf2"),
			ResourceGroupName:       example.Name,
			Location:                example.Location,
			Sku:                     pulumi.String("standard"),
			LocalAuthEnabled:        pulumi.Bool(true),
			PublicNetworkAccess:     pulumi.String("Enabled"),
			PurgeProtectionEnabled:  pulumi.Bool(false),
			SoftDeleteRetentionDays: pulumi.Int(1),
			Identity: &appconfiguration.ConfigurationStoreIdentityArgs{
				Type: pulumi.String("UserAssigned"),
				IdentityIds: pulumi.StringArray{
					exampleUserAssignedIdentity.ID(),
				},
			},
			Encryption: &appconfiguration.ConfigurationStoreEncryptionArgs{
				KeyVaultKeyIdentifier: exampleKey.ID(),
				IdentityClientId:      exampleUserAssignedIdentity.ClientId,
			},
			Replicas: appconfiguration.ConfigurationStoreReplicaArray{
				&appconfiguration.ConfigurationStoreReplicaArgs{
					Name:     pulumi.String("replica1"),
					Location: pulumi.String("West US"),
				},
			},
			Tags: pulumi.StringMap{
				"environment": pulumi.String("development"),
			},
		}, pulumi.DependsOn([]pulumi.Resource{
			client,
			server,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });
    var exampleUserAssignedIdentity = new Azure.Authorization.UserAssignedIdentity("example", new()
    {
        Name = "example-identity",
        Location = example.Location,
        ResourceGroupName = example.Name,
    });
    var current = Azure.Core.GetClientConfig.Invoke();
    var exampleKeyVault = new Azure.KeyVault.KeyVault("example", new()
    {
        Name = "exampleKVt123",
        Location = example.Location,
        ResourceGroupName = example.Name,
        TenantId = current.Apply(getClientConfigResult => getClientConfigResult.TenantId),
        SkuName = "standard",
        SoftDeleteRetentionDays = 7,
        PurgeProtectionEnabled = true,
    });
    var server = new Azure.KeyVault.AccessPolicy("server", new()
    {
        KeyVaultId = exampleKeyVault.Id,
        TenantId = current.Apply(getClientConfigResult => getClientConfigResult.TenantId),
        ObjectId = exampleUserAssignedIdentity.PrincipalId,
        KeyPermissions = new[]
        {
            "Get",
            "UnwrapKey",
            "WrapKey",
        },
        SecretPermissions = new[]
        {
            "Get",
        },
    });
    var client = new Azure.KeyVault.AccessPolicy("client", new()
    {
        KeyVaultId = exampleKeyVault.Id,
        TenantId = current.Apply(getClientConfigResult => getClientConfigResult.TenantId),
        ObjectId = current.Apply(getClientConfigResult => getClientConfigResult.ObjectId),
        KeyPermissions = new[]
        {
            "Get",
            "Create",
            "Delete",
            "List",
            "Restore",
            "Recover",
            "UnwrapKey",
            "WrapKey",
            "Purge",
            "Encrypt",
            "Decrypt",
            "Sign",
            "Verify",
            "GetRotationPolicy",
        },
        SecretPermissions = new[]
        {
            "Get",
        },
    });
    var exampleKey = new Azure.KeyVault.Key("example", new()
    {
        Name = "exampleKVkey",
        KeyVaultId = exampleKeyVault.Id,
        KeyType = "RSA",
        KeySize = 2048,
        KeyOpts = new[]
        {
            "decrypt",
            "encrypt",
            "sign",
            "unwrapKey",
            "verify",
            "wrapKey",
        },
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            client,
            server,
        },
    });
    var exampleConfigurationStore = new Azure.AppConfiguration.ConfigurationStore("example", new()
    {
        Name = "appConf2",
        ResourceGroupName = example.Name,
        Location = example.Location,
        Sku = "standard",
        LocalAuthEnabled = true,
        PublicNetworkAccess = "Enabled",
        PurgeProtectionEnabled = false,
        SoftDeleteRetentionDays = 1,
        Identity = new Azure.AppConfiguration.Inputs.ConfigurationStoreIdentityArgs
        {
            Type = "UserAssigned",
            IdentityIds = new[]
            {
                exampleUserAssignedIdentity.Id,
            },
        },
        Encryption = new Azure.AppConfiguration.Inputs.ConfigurationStoreEncryptionArgs
        {
            KeyVaultKeyIdentifier = exampleKey.Id,
            IdentityClientId = exampleUserAssignedIdentity.ClientId,
        },
        Replicas = new[]
        {
            new Azure.AppConfiguration.Inputs.ConfigurationStoreReplicaArgs
            {
                Name = "replica1",
                Location = "West US",
            },
        },
        Tags = 
        {
            { "environment", "development" },
        },
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            client,
            server,
        },
    });
});
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.authorization.UserAssignedIdentity;
import com.pulumi.azure.authorization.UserAssignedIdentityArgs;
import com.pulumi.azure.core.CoreFunctions;
import com.pulumi.azure.keyvault.KeyVault;
import com.pulumi.azure.keyvault.KeyVaultArgs;
import com.pulumi.azure.keyvault.AccessPolicy;
import com.pulumi.azure.keyvault.AccessPolicyArgs;
import com.pulumi.azure.keyvault.Key;
import com.pulumi.azure.keyvault.KeyArgs;
import com.pulumi.azure.appconfiguration.ConfigurationStore;
import com.pulumi.azure.appconfiguration.ConfigurationStoreArgs;
import com.pulumi.azure.appconfiguration.inputs.ConfigurationStoreIdentityArgs;
import com.pulumi.azure.appconfiguration.inputs.ConfigurationStoreEncryptionArgs;
import com.pulumi.azure.appconfiguration.inputs.ConfigurationStoreReplicaArgs;
import com.pulumi.resources.CustomResourceOptions;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());
        var exampleUserAssignedIdentity = new UserAssignedIdentity("exampleUserAssignedIdentity", UserAssignedIdentityArgs.builder()
            .name("example-identity")
            .location(example.location())
            .resourceGroupName(example.name())
            .build());
        final var current = CoreFunctions.getClientConfig();
        var exampleKeyVault = new KeyVault("exampleKeyVault", KeyVaultArgs.builder()
            .name("exampleKVt123")
            .location(example.location())
            .resourceGroupName(example.name())
            .tenantId(current.applyValue(getClientConfigResult -> getClientConfigResult.tenantId()))
            .skuName("standard")
            .softDeleteRetentionDays(7)
            .purgeProtectionEnabled(true)
            .build());
        var server = new AccessPolicy("server", AccessPolicyArgs.builder()
            .keyVaultId(exampleKeyVault.id())
            .tenantId(current.applyValue(getClientConfigResult -> getClientConfigResult.tenantId()))
            .objectId(exampleUserAssignedIdentity.principalId())
            .keyPermissions(            
                "Get",
                "UnwrapKey",
                "WrapKey")
            .secretPermissions("Get")
            .build());
        var client = new AccessPolicy("client", AccessPolicyArgs.builder()
            .keyVaultId(exampleKeyVault.id())
            .tenantId(current.applyValue(getClientConfigResult -> getClientConfigResult.tenantId()))
            .objectId(current.applyValue(getClientConfigResult -> getClientConfigResult.objectId()))
            .keyPermissions(            
                "Get",
                "Create",
                "Delete",
                "List",
                "Restore",
                "Recover",
                "UnwrapKey",
                "WrapKey",
                "Purge",
                "Encrypt",
                "Decrypt",
                "Sign",
                "Verify",
                "GetRotationPolicy")
            .secretPermissions("Get")
            .build());
        var exampleKey = new Key("exampleKey", KeyArgs.builder()
            .name("exampleKVkey")
            .keyVaultId(exampleKeyVault.id())
            .keyType("RSA")
            .keySize(2048)
            .keyOpts(            
                "decrypt",
                "encrypt",
                "sign",
                "unwrapKey",
                "verify",
                "wrapKey")
            .build(), CustomResourceOptions.builder()
                .dependsOn(                
                    client,
                    server)
                .build());
        var exampleConfigurationStore = new ConfigurationStore("exampleConfigurationStore", ConfigurationStoreArgs.builder()
            .name("appConf2")
            .resourceGroupName(example.name())
            .location(example.location())
            .sku("standard")
            .localAuthEnabled(true)
            .publicNetworkAccess("Enabled")
            .purgeProtectionEnabled(false)
            .softDeleteRetentionDays(1)
            .identity(ConfigurationStoreIdentityArgs.builder()
                .type("UserAssigned")
                .identityIds(exampleUserAssignedIdentity.id())
                .build())
            .encryption(ConfigurationStoreEncryptionArgs.builder()
                .keyVaultKeyIdentifier(exampleKey.id())
                .identityClientId(exampleUserAssignedIdentity.clientId())
                .build())
            .replicas(ConfigurationStoreReplicaArgs.builder()
                .name("replica1")
                .location("West US")
                .build())
            .tags(Map.of("environment", "development"))
            .build(), CustomResourceOptions.builder()
                .dependsOn(                
                    client,
                    server)
                .build());
    }
}
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleUserAssignedIdentity:
    type: azure:authorization:UserAssignedIdentity
    name: example
    properties:
      name: example-identity
      location: ${example.location}
      resourceGroupName: ${example.name}
  exampleKeyVault:
    type: azure:keyvault:KeyVault
    name: example
    properties:
      name: exampleKVt123
      location: ${example.location}
      resourceGroupName: ${example.name}
      tenantId: ${current.tenantId}
      skuName: standard
      softDeleteRetentionDays: 7
      purgeProtectionEnabled: true
  server:
    type: azure:keyvault:AccessPolicy
    properties:
      keyVaultId: ${exampleKeyVault.id}
      tenantId: ${current.tenantId}
      objectId: ${exampleUserAssignedIdentity.principalId}
      keyPermissions:
        - Get
        - UnwrapKey
        - WrapKey
      secretPermissions:
        - Get
  client:
    type: azure:keyvault:AccessPolicy
    properties:
      keyVaultId: ${exampleKeyVault.id}
      tenantId: ${current.tenantId}
      objectId: ${current.objectId}
      keyPermissions:
        - Get
        - Create
        - Delete
        - List
        - Restore
        - Recover
        - UnwrapKey
        - WrapKey
        - Purge
        - Encrypt
        - Decrypt
        - Sign
        - Verify
        - GetRotationPolicy
      secretPermissions:
        - Get
  exampleKey:
    type: azure:keyvault:Key
    name: example
    properties:
      name: exampleKVkey
      keyVaultId: ${exampleKeyVault.id}
      keyType: RSA
      keySize: 2048
      keyOpts:
        - decrypt
        - encrypt
        - sign
        - unwrapKey
        - verify
        - wrapKey
    options:
      dependsOn:
        - ${client}
        - ${server}
  exampleConfigurationStore:
    type: azure:appconfiguration:ConfigurationStore
    name: example
    properties:
      name: appConf2
      resourceGroupName: ${example.name}
      location: ${example.location}
      sku: standard
      localAuthEnabled: true
      publicNetworkAccess: Enabled
      purgeProtectionEnabled: false
      softDeleteRetentionDays: 1
      identity:
        type: UserAssigned
        identityIds:
          - ${exampleUserAssignedIdentity.id}
      encryption:
        keyVaultKeyIdentifier: ${exampleKey.id}
        identityClientId: ${exampleUserAssignedIdentity.clientId}
      replicas:
        - name: replica1
          location: West US
      tags:
        environment: development
    options:
      dependsOn:
        - ${client}
        - ${server}
variables:
  current:
    fn::invoke:
      function: azure:core:getClientConfig
      arguments: {}
Create ConfigurationStore Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ConfigurationStore(name: string, args: ConfigurationStoreArgs, opts?: CustomResourceOptions);@overload
def ConfigurationStore(resource_name: str,
                       args: ConfigurationStoreArgs,
                       opts: Optional[ResourceOptions] = None)
@overload
def ConfigurationStore(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       resource_group_name: Optional[str] = None,
                       name: Optional[str] = None,
                       encryption: Optional[ConfigurationStoreEncryptionArgs] = None,
                       identity: Optional[ConfigurationStoreIdentityArgs] = None,
                       local_auth_enabled: Optional[bool] = None,
                       location: Optional[str] = None,
                       data_plane_proxy_authentication_mode: Optional[str] = None,
                       public_network_access: Optional[str] = None,
                       purge_protection_enabled: Optional[bool] = None,
                       replicas: Optional[Sequence[ConfigurationStoreReplicaArgs]] = None,
                       data_plane_proxy_private_link_delegation_enabled: Optional[bool] = None,
                       sku: Optional[str] = None,
                       soft_delete_retention_days: Optional[int] = None,
                       tags: Optional[Mapping[str, str]] = None)func NewConfigurationStore(ctx *Context, name string, args ConfigurationStoreArgs, opts ...ResourceOption) (*ConfigurationStore, error)public ConfigurationStore(string name, ConfigurationStoreArgs args, CustomResourceOptions? opts = null)
public ConfigurationStore(String name, ConfigurationStoreArgs args)
public ConfigurationStore(String name, ConfigurationStoreArgs args, CustomResourceOptions options)
type: azure:appconfiguration:ConfigurationStore
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 ConfigurationStoreArgs
- 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 ConfigurationStoreArgs
- 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 ConfigurationStoreArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConfigurationStoreArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConfigurationStoreArgs
- 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 configurationStoreResource = new Azure.AppConfiguration.ConfigurationStore("configurationStoreResource", new()
{
    ResourceGroupName = "string",
    Name = "string",
    Encryption = new Azure.AppConfiguration.Inputs.ConfigurationStoreEncryptionArgs
    {
        IdentityClientId = "string",
        KeyVaultKeyIdentifier = "string",
    },
    Identity = new Azure.AppConfiguration.Inputs.ConfigurationStoreIdentityArgs
    {
        Type = "string",
        IdentityIds = new[]
        {
            "string",
        },
        PrincipalId = "string",
        TenantId = "string",
    },
    LocalAuthEnabled = false,
    Location = "string",
    DataPlaneProxyAuthenticationMode = "string",
    PublicNetworkAccess = "string",
    PurgeProtectionEnabled = false,
    Replicas = new[]
    {
        new Azure.AppConfiguration.Inputs.ConfigurationStoreReplicaArgs
        {
            Location = "string",
            Name = "string",
            Endpoint = "string",
            Id = "string",
        },
    },
    DataPlaneProxyPrivateLinkDelegationEnabled = false,
    Sku = "string",
    SoftDeleteRetentionDays = 0,
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := appconfiguration.NewConfigurationStore(ctx, "configurationStoreResource", &appconfiguration.ConfigurationStoreArgs{
	ResourceGroupName: pulumi.String("string"),
	Name:              pulumi.String("string"),
	Encryption: &appconfiguration.ConfigurationStoreEncryptionArgs{
		IdentityClientId:      pulumi.String("string"),
		KeyVaultKeyIdentifier: pulumi.String("string"),
	},
	Identity: &appconfiguration.ConfigurationStoreIdentityArgs{
		Type: pulumi.String("string"),
		IdentityIds: pulumi.StringArray{
			pulumi.String("string"),
		},
		PrincipalId: pulumi.String("string"),
		TenantId:    pulumi.String("string"),
	},
	LocalAuthEnabled:                 pulumi.Bool(false),
	Location:                         pulumi.String("string"),
	DataPlaneProxyAuthenticationMode: pulumi.String("string"),
	PublicNetworkAccess:              pulumi.String("string"),
	PurgeProtectionEnabled:           pulumi.Bool(false),
	Replicas: appconfiguration.ConfigurationStoreReplicaArray{
		&appconfiguration.ConfigurationStoreReplicaArgs{
			Location: pulumi.String("string"),
			Name:     pulumi.String("string"),
			Endpoint: pulumi.String("string"),
			Id:       pulumi.String("string"),
		},
	},
	DataPlaneProxyPrivateLinkDelegationEnabled: pulumi.Bool(false),
	Sku:                     pulumi.String("string"),
	SoftDeleteRetentionDays: pulumi.Int(0),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var configurationStoreResource = new ConfigurationStore("configurationStoreResource", ConfigurationStoreArgs.builder()
    .resourceGroupName("string")
    .name("string")
    .encryption(ConfigurationStoreEncryptionArgs.builder()
        .identityClientId("string")
        .keyVaultKeyIdentifier("string")
        .build())
    .identity(ConfigurationStoreIdentityArgs.builder()
        .type("string")
        .identityIds("string")
        .principalId("string")
        .tenantId("string")
        .build())
    .localAuthEnabled(false)
    .location("string")
    .dataPlaneProxyAuthenticationMode("string")
    .publicNetworkAccess("string")
    .purgeProtectionEnabled(false)
    .replicas(ConfigurationStoreReplicaArgs.builder()
        .location("string")
        .name("string")
        .endpoint("string")
        .id("string")
        .build())
    .dataPlaneProxyPrivateLinkDelegationEnabled(false)
    .sku("string")
    .softDeleteRetentionDays(0)
    .tags(Map.of("string", "string"))
    .build());
configuration_store_resource = azure.appconfiguration.ConfigurationStore("configurationStoreResource",
    resource_group_name="string",
    name="string",
    encryption={
        "identity_client_id": "string",
        "key_vault_key_identifier": "string",
    },
    identity={
        "type": "string",
        "identity_ids": ["string"],
        "principal_id": "string",
        "tenant_id": "string",
    },
    local_auth_enabled=False,
    location="string",
    data_plane_proxy_authentication_mode="string",
    public_network_access="string",
    purge_protection_enabled=False,
    replicas=[{
        "location": "string",
        "name": "string",
        "endpoint": "string",
        "id": "string",
    }],
    data_plane_proxy_private_link_delegation_enabled=False,
    sku="string",
    soft_delete_retention_days=0,
    tags={
        "string": "string",
    })
const configurationStoreResource = new azure.appconfiguration.ConfigurationStore("configurationStoreResource", {
    resourceGroupName: "string",
    name: "string",
    encryption: {
        identityClientId: "string",
        keyVaultKeyIdentifier: "string",
    },
    identity: {
        type: "string",
        identityIds: ["string"],
        principalId: "string",
        tenantId: "string",
    },
    localAuthEnabled: false,
    location: "string",
    dataPlaneProxyAuthenticationMode: "string",
    publicNetworkAccess: "string",
    purgeProtectionEnabled: false,
    replicas: [{
        location: "string",
        name: "string",
        endpoint: "string",
        id: "string",
    }],
    dataPlaneProxyPrivateLinkDelegationEnabled: false,
    sku: "string",
    softDeleteRetentionDays: 0,
    tags: {
        string: "string",
    },
});
type: azure:appconfiguration:ConfigurationStore
properties:
    dataPlaneProxyAuthenticationMode: string
    dataPlaneProxyPrivateLinkDelegationEnabled: false
    encryption:
        identityClientId: string
        keyVaultKeyIdentifier: string
    identity:
        identityIds:
            - string
        principalId: string
        tenantId: string
        type: string
    localAuthEnabled: false
    location: string
    name: string
    publicNetworkAccess: string
    purgeProtectionEnabled: false
    replicas:
        - endpoint: string
          id: string
          location: string
          name: string
    resourceGroupName: string
    sku: string
    softDeleteRetentionDays: 0
    tags:
        string: string
ConfigurationStore 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 ConfigurationStore resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- DataPlane stringProxy Authentication Mode 
- The data plane proxy authentication mode. Possible values are LocalandPass-through. Defaults toLocal.
- DataPlane boolProxy Private Link Delegation Enabled 
- Whether data plane proxy private link delegation is enabled. Defaults to - false.- Note: - data_plane_proxy_private_link_delegation_enabledcannot be set to- truewhen- data_plane_proxy_authentication_modeis set to- Local.
- Encryption
ConfigurationStore Encryption 
- An encryptionblock as defined below.
- Identity
ConfigurationStore Identity 
- An identityblock as defined below.
- LocalAuth boolEnabled 
- Whether local authentication methods is enabled. Defaults to true.
- Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the App Configuration. Changing this forces a new resource to be created.
- PublicNetwork stringAccess 
- The Public Network Access setting of the App Configuration. Possible values are - Enabledand- Disabled.- Note: If - public_network_accessis not specified, the App Configuration will be created as- Automatic. However, once a different value is defined, can not be set again as automatic.
- PurgeProtection boolEnabled 
- Whether Purge Protection is enabled. This field only works for - standardsku. Defaults to- false.- !> Note: Once Purge Protection has been enabled it's not possible to disable it. Deleting the App Configuration with Purge Protection enabled will schedule the App Configuration to be deleted (which will happen by Azure in the configured number of days). 
- Replicas
List<ConfigurationStore Replica> 
- One or more replicablocks as defined below.
- Sku string
- The SKU name of the App Configuration. Possible values are - free,- standardand- premium. Defaults to- free.- Note: Azure does not support downgrading - sku. Downgrading from- premiumtier to- standardor- free, or from- standardto- free, forces a new resource to be created.
- SoftDelete intRetention Days 
- The number of days that items should be retained for once soft-deleted. This field only works for - standardsku. This value can be between- 1and- 7days. Defaults to- 7. Changing this forces a new resource to be created.- Note: If Purge Protection is enabled, this field can only be configured one time and cannot be updated. 
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- ResourceGroup stringName 
- The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- DataPlane stringProxy Authentication Mode 
- The data plane proxy authentication mode. Possible values are LocalandPass-through. Defaults toLocal.
- DataPlane boolProxy Private Link Delegation Enabled 
- Whether data plane proxy private link delegation is enabled. Defaults to - false.- Note: - data_plane_proxy_private_link_delegation_enabledcannot be set to- truewhen- data_plane_proxy_authentication_modeis set to- Local.
- Encryption
ConfigurationStore Encryption Args 
- An encryptionblock as defined below.
- Identity
ConfigurationStore Identity Args 
- An identityblock as defined below.
- LocalAuth boolEnabled 
- Whether local authentication methods is enabled. Defaults to true.
- Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the App Configuration. Changing this forces a new resource to be created.
- PublicNetwork stringAccess 
- The Public Network Access setting of the App Configuration. Possible values are - Enabledand- Disabled.- Note: If - public_network_accessis not specified, the App Configuration will be created as- Automatic. However, once a different value is defined, can not be set again as automatic.
- PurgeProtection boolEnabled 
- Whether Purge Protection is enabled. This field only works for - standardsku. Defaults to- false.- !> Note: Once Purge Protection has been enabled it's not possible to disable it. Deleting the App Configuration with Purge Protection enabled will schedule the App Configuration to be deleted (which will happen by Azure in the configured number of days). 
- Replicas
[]ConfigurationStore Replica Args 
- One or more replicablocks as defined below.
- Sku string
- The SKU name of the App Configuration. Possible values are - free,- standardand- premium. Defaults to- free.- Note: Azure does not support downgrading - sku. Downgrading from- premiumtier to- standardor- free, or from- standardto- free, forces a new resource to be created.
- SoftDelete intRetention Days 
- The number of days that items should be retained for once soft-deleted. This field only works for - standardsku. This value can be between- 1and- 7days. Defaults to- 7. Changing this forces a new resource to be created.- Note: If Purge Protection is enabled, this field can only be configured one time and cannot be updated. 
- map[string]string
- A mapping of tags to assign to the resource.
- resourceGroup StringName 
- The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- dataPlane StringProxy Authentication Mode 
- The data plane proxy authentication mode. Possible values are LocalandPass-through. Defaults toLocal.
- dataPlane BooleanProxy Private Link Delegation Enabled 
- Whether data plane proxy private link delegation is enabled. Defaults to - false.- Note: - data_plane_proxy_private_link_delegation_enabledcannot be set to- truewhen- data_plane_proxy_authentication_modeis set to- Local.
- encryption
ConfigurationStore Encryption 
- An encryptionblock as defined below.
- identity
ConfigurationStore Identity 
- An identityblock as defined below.
- localAuth BooleanEnabled 
- Whether local authentication methods is enabled. Defaults to true.
- location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the App Configuration. Changing this forces a new resource to be created.
- publicNetwork StringAccess 
- The Public Network Access setting of the App Configuration. Possible values are - Enabledand- Disabled.- Note: If - public_network_accessis not specified, the App Configuration will be created as- Automatic. However, once a different value is defined, can not be set again as automatic.
- purgeProtection BooleanEnabled 
- Whether Purge Protection is enabled. This field only works for - standardsku. Defaults to- false.- !> Note: Once Purge Protection has been enabled it's not possible to disable it. Deleting the App Configuration with Purge Protection enabled will schedule the App Configuration to be deleted (which will happen by Azure in the configured number of days). 
- replicas
List<ConfigurationStore Replica> 
- One or more replicablocks as defined below.
- sku String
- The SKU name of the App Configuration. Possible values are - free,- standardand- premium. Defaults to- free.- Note: Azure does not support downgrading - sku. Downgrading from- premiumtier to- standardor- free, or from- standardto- free, forces a new resource to be created.
- softDelete IntegerRetention Days 
- The number of days that items should be retained for once soft-deleted. This field only works for - standardsku. This value can be between- 1and- 7days. Defaults to- 7. Changing this forces a new resource to be created.- Note: If Purge Protection is enabled, this field can only be configured one time and cannot be updated. 
- Map<String,String>
- A mapping of tags to assign to the resource.
- resourceGroup stringName 
- The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- dataPlane stringProxy Authentication Mode 
- The data plane proxy authentication mode. Possible values are LocalandPass-through. Defaults toLocal.
- dataPlane booleanProxy Private Link Delegation Enabled 
- Whether data plane proxy private link delegation is enabled. Defaults to - false.- Note: - data_plane_proxy_private_link_delegation_enabledcannot be set to- truewhen- data_plane_proxy_authentication_modeis set to- Local.
- encryption
ConfigurationStore Encryption 
- An encryptionblock as defined below.
- identity
ConfigurationStore Identity 
- An identityblock as defined below.
- localAuth booleanEnabled 
- Whether local authentication methods is enabled. Defaults to true.
- location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name string
- Specifies the name of the App Configuration. Changing this forces a new resource to be created.
- publicNetwork stringAccess 
- The Public Network Access setting of the App Configuration. Possible values are - Enabledand- Disabled.- Note: If - public_network_accessis not specified, the App Configuration will be created as- Automatic. However, once a different value is defined, can not be set again as automatic.
- purgeProtection booleanEnabled 
- Whether Purge Protection is enabled. This field only works for - standardsku. Defaults to- false.- !> Note: Once Purge Protection has been enabled it's not possible to disable it. Deleting the App Configuration with Purge Protection enabled will schedule the App Configuration to be deleted (which will happen by Azure in the configured number of days). 
- replicas
ConfigurationStore Replica[] 
- One or more replicablocks as defined below.
- sku string
- The SKU name of the App Configuration. Possible values are - free,- standardand- premium. Defaults to- free.- Note: Azure does not support downgrading - sku. Downgrading from- premiumtier to- standardor- free, or from- standardto- free, forces a new resource to be created.
- softDelete numberRetention Days 
- The number of days that items should be retained for once soft-deleted. This field only works for - standardsku. This value can be between- 1and- 7days. Defaults to- 7. Changing this forces a new resource to be created.- Note: If Purge Protection is enabled, this field can only be configured one time and cannot be updated. 
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- resource_group_ strname 
- The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- data_plane_ strproxy_ authentication_ mode 
- The data plane proxy authentication mode. Possible values are LocalandPass-through. Defaults toLocal.
- data_plane_ boolproxy_ private_ link_ delegation_ enabled 
- Whether data plane proxy private link delegation is enabled. Defaults to - false.- Note: - data_plane_proxy_private_link_delegation_enabledcannot be set to- truewhen- data_plane_proxy_authentication_modeis set to- Local.
- encryption
ConfigurationStore Encryption Args 
- An encryptionblock as defined below.
- identity
ConfigurationStore Identity Args 
- An identityblock as defined below.
- local_auth_ boolenabled 
- Whether local authentication methods is enabled. Defaults to true.
- location str
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name str
- Specifies the name of the App Configuration. Changing this forces a new resource to be created.
- public_network_ straccess 
- The Public Network Access setting of the App Configuration. Possible values are - Enabledand- Disabled.- Note: If - public_network_accessis not specified, the App Configuration will be created as- Automatic. However, once a different value is defined, can not be set again as automatic.
- purge_protection_ boolenabled 
- Whether Purge Protection is enabled. This field only works for - standardsku. Defaults to- false.- !> Note: Once Purge Protection has been enabled it's not possible to disable it. Deleting the App Configuration with Purge Protection enabled will schedule the App Configuration to be deleted (which will happen by Azure in the configured number of days). 
- replicas
Sequence[ConfigurationStore Replica Args] 
- One or more replicablocks as defined below.
- sku str
- The SKU name of the App Configuration. Possible values are - free,- standardand- premium. Defaults to- free.- Note: Azure does not support downgrading - sku. Downgrading from- premiumtier to- standardor- free, or from- standardto- free, forces a new resource to be created.
- soft_delete_ intretention_ days 
- The number of days that items should be retained for once soft-deleted. This field only works for - standardsku. This value can be between- 1and- 7days. Defaults to- 7. Changing this forces a new resource to be created.- Note: If Purge Protection is enabled, this field can only be configured one time and cannot be updated. 
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- resourceGroup StringName 
- The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- dataPlane StringProxy Authentication Mode 
- The data plane proxy authentication mode. Possible values are LocalandPass-through. Defaults toLocal.
- dataPlane BooleanProxy Private Link Delegation Enabled 
- Whether data plane proxy private link delegation is enabled. Defaults to - false.- Note: - data_plane_proxy_private_link_delegation_enabledcannot be set to- truewhen- data_plane_proxy_authentication_modeis set to- Local.
- encryption Property Map
- An encryptionblock as defined below.
- identity Property Map
- An identityblock as defined below.
- localAuth BooleanEnabled 
- Whether local authentication methods is enabled. Defaults to true.
- location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the App Configuration. Changing this forces a new resource to be created.
- publicNetwork StringAccess 
- The Public Network Access setting of the App Configuration. Possible values are - Enabledand- Disabled.- Note: If - public_network_accessis not specified, the App Configuration will be created as- Automatic. However, once a different value is defined, can not be set again as automatic.
- purgeProtection BooleanEnabled 
- Whether Purge Protection is enabled. This field only works for - standardsku. Defaults to- false.- !> Note: Once Purge Protection has been enabled it's not possible to disable it. Deleting the App Configuration with Purge Protection enabled will schedule the App Configuration to be deleted (which will happen by Azure in the configured number of days). 
- replicas List<Property Map>
- One or more replicablocks as defined below.
- sku String
- The SKU name of the App Configuration. Possible values are - free,- standardand- premium. Defaults to- free.- Note: Azure does not support downgrading - sku. Downgrading from- premiumtier to- standardor- free, or from- standardto- free, forces a new resource to be created.
- softDelete NumberRetention Days 
- The number of days that items should be retained for once soft-deleted. This field only works for - standardsku. This value can be between- 1and- 7days. Defaults to- 7. Changing this forces a new resource to be created.- Note: If Purge Protection is enabled, this field can only be configured one time and cannot be updated. 
- Map<String>
- A mapping of tags to assign to the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the ConfigurationStore resource produces the following output properties:
- Endpoint string
- The URL of the App Configuration Replica.
- Id string
- The provider-assigned unique ID for this managed resource.
- PrimaryRead List<ConfigurationKeys Store Primary Read Key> 
- A primary_read_keyblock as defined below containing the primary read access key.
- PrimaryWrite List<ConfigurationKeys Store Primary Write Key> 
- A primary_write_keyblock as defined below containing the primary write access key.
- SecondaryRead List<ConfigurationKeys Store Secondary Read Key> 
- A secondary_read_keyblock as defined below containing the secondary read access key.
- SecondaryWrite List<ConfigurationKeys Store Secondary Write Key> 
- A secondary_write_keyblock as defined below containing the secondary write access key.
- Endpoint string
- The URL of the App Configuration Replica.
- Id string
- The provider-assigned unique ID for this managed resource.
- PrimaryRead []ConfigurationKeys Store Primary Read Key 
- A primary_read_keyblock as defined below containing the primary read access key.
- PrimaryWrite []ConfigurationKeys Store Primary Write Key 
- A primary_write_keyblock as defined below containing the primary write access key.
- SecondaryRead []ConfigurationKeys Store Secondary Read Key 
- A secondary_read_keyblock as defined below containing the secondary read access key.
- SecondaryWrite []ConfigurationKeys Store Secondary Write Key 
- A secondary_write_keyblock as defined below containing the secondary write access key.
- endpoint String
- The URL of the App Configuration Replica.
- id String
- The provider-assigned unique ID for this managed resource.
- primaryRead List<ConfigurationKeys Store Primary Read Key> 
- A primary_read_keyblock as defined below containing the primary read access key.
- primaryWrite List<ConfigurationKeys Store Primary Write Key> 
- A primary_write_keyblock as defined below containing the primary write access key.
- secondaryRead List<ConfigurationKeys Store Secondary Read Key> 
- A secondary_read_keyblock as defined below containing the secondary read access key.
- secondaryWrite List<ConfigurationKeys Store Secondary Write Key> 
- A secondary_write_keyblock as defined below containing the secondary write access key.
- endpoint string
- The URL of the App Configuration Replica.
- id string
- The provider-assigned unique ID for this managed resource.
- primaryRead ConfigurationKeys Store Primary Read Key[] 
- A primary_read_keyblock as defined below containing the primary read access key.
- primaryWrite ConfigurationKeys Store Primary Write Key[] 
- A primary_write_keyblock as defined below containing the primary write access key.
- secondaryRead ConfigurationKeys Store Secondary Read Key[] 
- A secondary_read_keyblock as defined below containing the secondary read access key.
- secondaryWrite ConfigurationKeys Store Secondary Write Key[] 
- A secondary_write_keyblock as defined below containing the secondary write access key.
- endpoint str
- The URL of the App Configuration Replica.
- id str
- The provider-assigned unique ID for this managed resource.
- primary_read_ Sequence[Configurationkeys Store Primary Read Key] 
- A primary_read_keyblock as defined below containing the primary read access key.
- primary_write_ Sequence[Configurationkeys Store Primary Write Key] 
- A primary_write_keyblock as defined below containing the primary write access key.
- secondary_read_ Sequence[Configurationkeys Store Secondary Read Key] 
- A secondary_read_keyblock as defined below containing the secondary read access key.
- secondary_write_ Sequence[Configurationkeys Store Secondary Write Key] 
- A secondary_write_keyblock as defined below containing the secondary write access key.
- endpoint String
- The URL of the App Configuration Replica.
- id String
- The provider-assigned unique ID for this managed resource.
- primaryRead List<Property Map>Keys 
- A primary_read_keyblock as defined below containing the primary read access key.
- primaryWrite List<Property Map>Keys 
- A primary_write_keyblock as defined below containing the primary write access key.
- secondaryRead List<Property Map>Keys 
- A secondary_read_keyblock as defined below containing the secondary read access key.
- secondaryWrite List<Property Map>Keys 
- A secondary_write_keyblock as defined below containing the secondary write access key.
Look up Existing ConfigurationStore Resource
Get an existing ConfigurationStore 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?: ConfigurationStoreState, opts?: CustomResourceOptions): ConfigurationStore@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        data_plane_proxy_authentication_mode: Optional[str] = None,
        data_plane_proxy_private_link_delegation_enabled: Optional[bool] = None,
        encryption: Optional[ConfigurationStoreEncryptionArgs] = None,
        endpoint: Optional[str] = None,
        identity: Optional[ConfigurationStoreIdentityArgs] = None,
        local_auth_enabled: Optional[bool] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        primary_read_keys: Optional[Sequence[ConfigurationStorePrimaryReadKeyArgs]] = None,
        primary_write_keys: Optional[Sequence[ConfigurationStorePrimaryWriteKeyArgs]] = None,
        public_network_access: Optional[str] = None,
        purge_protection_enabled: Optional[bool] = None,
        replicas: Optional[Sequence[ConfigurationStoreReplicaArgs]] = None,
        resource_group_name: Optional[str] = None,
        secondary_read_keys: Optional[Sequence[ConfigurationStoreSecondaryReadKeyArgs]] = None,
        secondary_write_keys: Optional[Sequence[ConfigurationStoreSecondaryWriteKeyArgs]] = None,
        sku: Optional[str] = None,
        soft_delete_retention_days: Optional[int] = None,
        tags: Optional[Mapping[str, str]] = None) -> ConfigurationStorefunc GetConfigurationStore(ctx *Context, name string, id IDInput, state *ConfigurationStoreState, opts ...ResourceOption) (*ConfigurationStore, error)public static ConfigurationStore Get(string name, Input<string> id, ConfigurationStoreState? state, CustomResourceOptions? opts = null)public static ConfigurationStore get(String name, Output<String> id, ConfigurationStoreState state, CustomResourceOptions options)resources:  _:    type: azure:appconfiguration:ConfigurationStore    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.
- DataPlane stringProxy Authentication Mode 
- The data plane proxy authentication mode. Possible values are LocalandPass-through. Defaults toLocal.
- DataPlane boolProxy Private Link Delegation Enabled 
- Whether data plane proxy private link delegation is enabled. Defaults to - false.- Note: - data_plane_proxy_private_link_delegation_enabledcannot be set to- truewhen- data_plane_proxy_authentication_modeis set to- Local.
- Encryption
ConfigurationStore Encryption 
- An encryptionblock as defined below.
- Endpoint string
- The URL of the App Configuration Replica.
- Identity
ConfigurationStore Identity 
- An identityblock as defined below.
- LocalAuth boolEnabled 
- Whether local authentication methods is enabled. Defaults to true.
- Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the App Configuration. Changing this forces a new resource to be created.
- PrimaryRead List<ConfigurationKeys Store Primary Read Key> 
- A primary_read_keyblock as defined below containing the primary read access key.
- PrimaryWrite List<ConfigurationKeys Store Primary Write Key> 
- A primary_write_keyblock as defined below containing the primary write access key.
- PublicNetwork stringAccess 
- The Public Network Access setting of the App Configuration. Possible values are - Enabledand- Disabled.- Note: If - public_network_accessis not specified, the App Configuration will be created as- Automatic. However, once a different value is defined, can not be set again as automatic.
- PurgeProtection boolEnabled 
- Whether Purge Protection is enabled. This field only works for - standardsku. Defaults to- false.- !> Note: Once Purge Protection has been enabled it's not possible to disable it. Deleting the App Configuration with Purge Protection enabled will schedule the App Configuration to be deleted (which will happen by Azure in the configured number of days). 
- Replicas
List<ConfigurationStore Replica> 
- One or more replicablocks as defined below.
- ResourceGroup stringName 
- The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- SecondaryRead List<ConfigurationKeys Store Secondary Read Key> 
- A secondary_read_keyblock as defined below containing the secondary read access key.
- SecondaryWrite List<ConfigurationKeys Store Secondary Write Key> 
- A secondary_write_keyblock as defined below containing the secondary write access key.
- Sku string
- The SKU name of the App Configuration. Possible values are - free,- standardand- premium. Defaults to- free.- Note: Azure does not support downgrading - sku. Downgrading from- premiumtier to- standardor- free, or from- standardto- free, forces a new resource to be created.
- SoftDelete intRetention Days 
- The number of days that items should be retained for once soft-deleted. This field only works for - standardsku. This value can be between- 1and- 7days. Defaults to- 7. Changing this forces a new resource to be created.- Note: If Purge Protection is enabled, this field can only be configured one time and cannot be updated. 
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- DataPlane stringProxy Authentication Mode 
- The data plane proxy authentication mode. Possible values are LocalandPass-through. Defaults toLocal.
- DataPlane boolProxy Private Link Delegation Enabled 
- Whether data plane proxy private link delegation is enabled. Defaults to - false.- Note: - data_plane_proxy_private_link_delegation_enabledcannot be set to- truewhen- data_plane_proxy_authentication_modeis set to- Local.
- Encryption
ConfigurationStore Encryption Args 
- An encryptionblock as defined below.
- Endpoint string
- The URL of the App Configuration Replica.
- Identity
ConfigurationStore Identity Args 
- An identityblock as defined below.
- LocalAuth boolEnabled 
- Whether local authentication methods is enabled. Defaults to true.
- Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the App Configuration. Changing this forces a new resource to be created.
- PrimaryRead []ConfigurationKeys Store Primary Read Key Args 
- A primary_read_keyblock as defined below containing the primary read access key.
- PrimaryWrite []ConfigurationKeys Store Primary Write Key Args 
- A primary_write_keyblock as defined below containing the primary write access key.
- PublicNetwork stringAccess 
- The Public Network Access setting of the App Configuration. Possible values are - Enabledand- Disabled.- Note: If - public_network_accessis not specified, the App Configuration will be created as- Automatic. However, once a different value is defined, can not be set again as automatic.
- PurgeProtection boolEnabled 
- Whether Purge Protection is enabled. This field only works for - standardsku. Defaults to- false.- !> Note: Once Purge Protection has been enabled it's not possible to disable it. Deleting the App Configuration with Purge Protection enabled will schedule the App Configuration to be deleted (which will happen by Azure in the configured number of days). 
- Replicas
[]ConfigurationStore Replica Args 
- One or more replicablocks as defined below.
- ResourceGroup stringName 
- The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- SecondaryRead []ConfigurationKeys Store Secondary Read Key Args 
- A secondary_read_keyblock as defined below containing the secondary read access key.
- SecondaryWrite []ConfigurationKeys Store Secondary Write Key Args 
- A secondary_write_keyblock as defined below containing the secondary write access key.
- Sku string
- The SKU name of the App Configuration. Possible values are - free,- standardand- premium. Defaults to- free.- Note: Azure does not support downgrading - sku. Downgrading from- premiumtier to- standardor- free, or from- standardto- free, forces a new resource to be created.
- SoftDelete intRetention Days 
- The number of days that items should be retained for once soft-deleted. This field only works for - standardsku. This value can be between- 1and- 7days. Defaults to- 7. Changing this forces a new resource to be created.- Note: If Purge Protection is enabled, this field can only be configured one time and cannot be updated. 
- map[string]string
- A mapping of tags to assign to the resource.
- dataPlane StringProxy Authentication Mode 
- The data plane proxy authentication mode. Possible values are LocalandPass-through. Defaults toLocal.
- dataPlane BooleanProxy Private Link Delegation Enabled 
- Whether data plane proxy private link delegation is enabled. Defaults to - false.- Note: - data_plane_proxy_private_link_delegation_enabledcannot be set to- truewhen- data_plane_proxy_authentication_modeis set to- Local.
- encryption
ConfigurationStore Encryption 
- An encryptionblock as defined below.
- endpoint String
- The URL of the App Configuration Replica.
- identity
ConfigurationStore Identity 
- An identityblock as defined below.
- localAuth BooleanEnabled 
- Whether local authentication methods is enabled. Defaults to true.
- location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the App Configuration. Changing this forces a new resource to be created.
- primaryRead List<ConfigurationKeys Store Primary Read Key> 
- A primary_read_keyblock as defined below containing the primary read access key.
- primaryWrite List<ConfigurationKeys Store Primary Write Key> 
- A primary_write_keyblock as defined below containing the primary write access key.
- publicNetwork StringAccess 
- The Public Network Access setting of the App Configuration. Possible values are - Enabledand- Disabled.- Note: If - public_network_accessis not specified, the App Configuration will be created as- Automatic. However, once a different value is defined, can not be set again as automatic.
- purgeProtection BooleanEnabled 
- Whether Purge Protection is enabled. This field only works for - standardsku. Defaults to- false.- !> Note: Once Purge Protection has been enabled it's not possible to disable it. Deleting the App Configuration with Purge Protection enabled will schedule the App Configuration to be deleted (which will happen by Azure in the configured number of days). 
- replicas
List<ConfigurationStore Replica> 
- One or more replicablocks as defined below.
- resourceGroup StringName 
- The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- secondaryRead List<ConfigurationKeys Store Secondary Read Key> 
- A secondary_read_keyblock as defined below containing the secondary read access key.
- secondaryWrite List<ConfigurationKeys Store Secondary Write Key> 
- A secondary_write_keyblock as defined below containing the secondary write access key.
- sku String
- The SKU name of the App Configuration. Possible values are - free,- standardand- premium. Defaults to- free.- Note: Azure does not support downgrading - sku. Downgrading from- premiumtier to- standardor- free, or from- standardto- free, forces a new resource to be created.
- softDelete IntegerRetention Days 
- The number of days that items should be retained for once soft-deleted. This field only works for - standardsku. This value can be between- 1and- 7days. Defaults to- 7. Changing this forces a new resource to be created.- Note: If Purge Protection is enabled, this field can only be configured one time and cannot be updated. 
- Map<String,String>
- A mapping of tags to assign to the resource.
- dataPlane stringProxy Authentication Mode 
- The data plane proxy authentication mode. Possible values are LocalandPass-through. Defaults toLocal.
- dataPlane booleanProxy Private Link Delegation Enabled 
- Whether data plane proxy private link delegation is enabled. Defaults to - false.- Note: - data_plane_proxy_private_link_delegation_enabledcannot be set to- truewhen- data_plane_proxy_authentication_modeis set to- Local.
- encryption
ConfigurationStore Encryption 
- An encryptionblock as defined below.
- endpoint string
- The URL of the App Configuration Replica.
- identity
ConfigurationStore Identity 
- An identityblock as defined below.
- localAuth booleanEnabled 
- Whether local authentication methods is enabled. Defaults to true.
- location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name string
- Specifies the name of the App Configuration. Changing this forces a new resource to be created.
- primaryRead ConfigurationKeys Store Primary Read Key[] 
- A primary_read_keyblock as defined below containing the primary read access key.
- primaryWrite ConfigurationKeys Store Primary Write Key[] 
- A primary_write_keyblock as defined below containing the primary write access key.
- publicNetwork stringAccess 
- The Public Network Access setting of the App Configuration. Possible values are - Enabledand- Disabled.- Note: If - public_network_accessis not specified, the App Configuration will be created as- Automatic. However, once a different value is defined, can not be set again as automatic.
- purgeProtection booleanEnabled 
- Whether Purge Protection is enabled. This field only works for - standardsku. Defaults to- false.- !> Note: Once Purge Protection has been enabled it's not possible to disable it. Deleting the App Configuration with Purge Protection enabled will schedule the App Configuration to be deleted (which will happen by Azure in the configured number of days). 
- replicas
ConfigurationStore Replica[] 
- One or more replicablocks as defined below.
- resourceGroup stringName 
- The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- secondaryRead ConfigurationKeys Store Secondary Read Key[] 
- A secondary_read_keyblock as defined below containing the secondary read access key.
- secondaryWrite ConfigurationKeys Store Secondary Write Key[] 
- A secondary_write_keyblock as defined below containing the secondary write access key.
- sku string
- The SKU name of the App Configuration. Possible values are - free,- standardand- premium. Defaults to- free.- Note: Azure does not support downgrading - sku. Downgrading from- premiumtier to- standardor- free, or from- standardto- free, forces a new resource to be created.
- softDelete numberRetention Days 
- The number of days that items should be retained for once soft-deleted. This field only works for - standardsku. This value can be between- 1and- 7days. Defaults to- 7. Changing this forces a new resource to be created.- Note: If Purge Protection is enabled, this field can only be configured one time and cannot be updated. 
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- data_plane_ strproxy_ authentication_ mode 
- The data plane proxy authentication mode. Possible values are LocalandPass-through. Defaults toLocal.
- data_plane_ boolproxy_ private_ link_ delegation_ enabled 
- Whether data plane proxy private link delegation is enabled. Defaults to - false.- Note: - data_plane_proxy_private_link_delegation_enabledcannot be set to- truewhen- data_plane_proxy_authentication_modeis set to- Local.
- encryption
ConfigurationStore Encryption Args 
- An encryptionblock as defined below.
- endpoint str
- The URL of the App Configuration Replica.
- identity
ConfigurationStore Identity Args 
- An identityblock as defined below.
- local_auth_ boolenabled 
- Whether local authentication methods is enabled. Defaults to true.
- location str
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name str
- Specifies the name of the App Configuration. Changing this forces a new resource to be created.
- primary_read_ Sequence[Configurationkeys Store Primary Read Key Args] 
- A primary_read_keyblock as defined below containing the primary read access key.
- primary_write_ Sequence[Configurationkeys Store Primary Write Key Args] 
- A primary_write_keyblock as defined below containing the primary write access key.
- public_network_ straccess 
- The Public Network Access setting of the App Configuration. Possible values are - Enabledand- Disabled.- Note: If - public_network_accessis not specified, the App Configuration will be created as- Automatic. However, once a different value is defined, can not be set again as automatic.
- purge_protection_ boolenabled 
- Whether Purge Protection is enabled. This field only works for - standardsku. Defaults to- false.- !> Note: Once Purge Protection has been enabled it's not possible to disable it. Deleting the App Configuration with Purge Protection enabled will schedule the App Configuration to be deleted (which will happen by Azure in the configured number of days). 
- replicas
Sequence[ConfigurationStore Replica Args] 
- One or more replicablocks as defined below.
- resource_group_ strname 
- The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- secondary_read_ Sequence[Configurationkeys Store Secondary Read Key Args] 
- A secondary_read_keyblock as defined below containing the secondary read access key.
- secondary_write_ Sequence[Configurationkeys Store Secondary Write Key Args] 
- A secondary_write_keyblock as defined below containing the secondary write access key.
- sku str
- The SKU name of the App Configuration. Possible values are - free,- standardand- premium. Defaults to- free.- Note: Azure does not support downgrading - sku. Downgrading from- premiumtier to- standardor- free, or from- standardto- free, forces a new resource to be created.
- soft_delete_ intretention_ days 
- The number of days that items should be retained for once soft-deleted. This field only works for - standardsku. This value can be between- 1and- 7days. Defaults to- 7. Changing this forces a new resource to be created.- Note: If Purge Protection is enabled, this field can only be configured one time and cannot be updated. 
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- dataPlane StringProxy Authentication Mode 
- The data plane proxy authentication mode. Possible values are LocalandPass-through. Defaults toLocal.
- dataPlane BooleanProxy Private Link Delegation Enabled 
- Whether data plane proxy private link delegation is enabled. Defaults to - false.- Note: - data_plane_proxy_private_link_delegation_enabledcannot be set to- truewhen- data_plane_proxy_authentication_modeis set to- Local.
- encryption Property Map
- An encryptionblock as defined below.
- endpoint String
- The URL of the App Configuration Replica.
- identity Property Map
- An identityblock as defined below.
- localAuth BooleanEnabled 
- Whether local authentication methods is enabled. Defaults to true.
- location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the App Configuration. Changing this forces a new resource to be created.
- primaryRead List<Property Map>Keys 
- A primary_read_keyblock as defined below containing the primary read access key.
- primaryWrite List<Property Map>Keys 
- A primary_write_keyblock as defined below containing the primary write access key.
- publicNetwork StringAccess 
- The Public Network Access setting of the App Configuration. Possible values are - Enabledand- Disabled.- Note: If - public_network_accessis not specified, the App Configuration will be created as- Automatic. However, once a different value is defined, can not be set again as automatic.
- purgeProtection BooleanEnabled 
- Whether Purge Protection is enabled. This field only works for - standardsku. Defaults to- false.- !> Note: Once Purge Protection has been enabled it's not possible to disable it. Deleting the App Configuration with Purge Protection enabled will schedule the App Configuration to be deleted (which will happen by Azure in the configured number of days). 
- replicas List<Property Map>
- One or more replicablocks as defined below.
- resourceGroup StringName 
- The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- secondaryRead List<Property Map>Keys 
- A secondary_read_keyblock as defined below containing the secondary read access key.
- secondaryWrite List<Property Map>Keys 
- A secondary_write_keyblock as defined below containing the secondary write access key.
- sku String
- The SKU name of the App Configuration. Possible values are - free,- standardand- premium. Defaults to- free.- Note: Azure does not support downgrading - sku. Downgrading from- premiumtier to- standardor- free, or from- standardto- free, forces a new resource to be created.
- softDelete NumberRetention Days 
- The number of days that items should be retained for once soft-deleted. This field only works for - standardsku. This value can be between- 1and- 7days. Defaults to- 7. Changing this forces a new resource to be created.- Note: If Purge Protection is enabled, this field can only be configured one time and cannot be updated. 
- Map<String>
- A mapping of tags to assign to the resource.
Supporting Types
ConfigurationStoreEncryption, ConfigurationStoreEncryptionArgs      
- IdentityClient stringId 
- Specifies the client ID of the identity which will be used to access key vault.
- KeyVault stringKey Identifier 
- Specifies the URI of the key vault key used to encrypt data.
- IdentityClient stringId 
- Specifies the client ID of the identity which will be used to access key vault.
- KeyVault stringKey Identifier 
- Specifies the URI of the key vault key used to encrypt data.
- identityClient StringId 
- Specifies the client ID of the identity which will be used to access key vault.
- keyVault StringKey Identifier 
- Specifies the URI of the key vault key used to encrypt data.
- identityClient stringId 
- Specifies the client ID of the identity which will be used to access key vault.
- keyVault stringKey Identifier 
- Specifies the URI of the key vault key used to encrypt data.
- identity_client_ strid 
- Specifies the client ID of the identity which will be used to access key vault.
- key_vault_ strkey_ identifier 
- Specifies the URI of the key vault key used to encrypt data.
- identityClient StringId 
- Specifies the client ID of the identity which will be used to access key vault.
- keyVault StringKey Identifier 
- Specifies the URI of the key vault key used to encrypt data.
ConfigurationStoreIdentity, ConfigurationStoreIdentityArgs      
- Type string
- Specifies the type of Managed Service Identity that should be configured on this App Configuration. Possible values are SystemAssigned,UserAssigned, andSystemAssigned, UserAssigned(to enable both).
- IdentityIds List<string>
- A list of User Assigned Managed Identity IDs to be assigned to this App Configuration. - Note: This is required when - typeis set to- UserAssignedor- SystemAssigned, UserAssigned.
- PrincipalId string
- The Principal ID associated with this Managed Service Identity.
- TenantId string
- The Tenant ID associated with this Managed Service Identity.
- Type string
- Specifies the type of Managed Service Identity that should be configured on this App Configuration. Possible values are SystemAssigned,UserAssigned, andSystemAssigned, UserAssigned(to enable both).
- IdentityIds []string
- A list of User Assigned Managed Identity IDs to be assigned to this App Configuration. - Note: This is required when - typeis set to- UserAssignedor- SystemAssigned, UserAssigned.
- PrincipalId string
- The Principal ID associated with this Managed Service Identity.
- TenantId string
- The Tenant ID associated with this Managed Service Identity.
- type String
- Specifies the type of Managed Service Identity that should be configured on this App Configuration. Possible values are SystemAssigned,UserAssigned, andSystemAssigned, UserAssigned(to enable both).
- identityIds List<String>
- A list of User Assigned Managed Identity IDs to be assigned to this App Configuration. - Note: This is required when - typeis set to- UserAssignedor- SystemAssigned, UserAssigned.
- principalId String
- The Principal ID associated with this Managed Service Identity.
- tenantId String
- The Tenant ID associated with this Managed Service Identity.
- type string
- Specifies the type of Managed Service Identity that should be configured on this App Configuration. Possible values are SystemAssigned,UserAssigned, andSystemAssigned, UserAssigned(to enable both).
- identityIds string[]
- A list of User Assigned Managed Identity IDs to be assigned to this App Configuration. - Note: This is required when - typeis set to- UserAssignedor- SystemAssigned, UserAssigned.
- principalId string
- The Principal ID associated with this Managed Service Identity.
- tenantId string
- The Tenant ID associated with this Managed Service Identity.
- type str
- Specifies the type of Managed Service Identity that should be configured on this App Configuration. Possible values are SystemAssigned,UserAssigned, andSystemAssigned, UserAssigned(to enable both).
- identity_ids Sequence[str]
- A list of User Assigned Managed Identity IDs to be assigned to this App Configuration. - Note: This is required when - typeis set to- UserAssignedor- SystemAssigned, UserAssigned.
- principal_id str
- The Principal ID associated with this Managed Service Identity.
- tenant_id str
- The Tenant ID associated with this Managed Service Identity.
- type String
- Specifies the type of Managed Service Identity that should be configured on this App Configuration. Possible values are SystemAssigned,UserAssigned, andSystemAssigned, UserAssigned(to enable both).
- identityIds List<String>
- A list of User Assigned Managed Identity IDs to be assigned to this App Configuration. - Note: This is required when - typeis set to- UserAssignedor- SystemAssigned, UserAssigned.
- principalId String
- The Principal ID associated with this Managed Service Identity.
- tenantId String
- The Tenant ID associated with this Managed Service Identity.
ConfigurationStorePrimaryReadKey, ConfigurationStorePrimaryReadKeyArgs          
- ConnectionString string
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- Id string
- The ID of the Access Key.
- Secret string
- The Secret of the Access Key.
- ConnectionString string
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- Id string
- The ID of the Access Key.
- Secret string
- The Secret of the Access Key.
- connectionString String
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- id String
- The ID of the Access Key.
- secret String
- The Secret of the Access Key.
- connectionString string
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- id string
- The ID of the Access Key.
- secret string
- The Secret of the Access Key.
- connection_string str
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- id str
- The ID of the Access Key.
- secret str
- The Secret of the Access Key.
- connectionString String
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- id String
- The ID of the Access Key.
- secret String
- The Secret of the Access Key.
ConfigurationStorePrimaryWriteKey, ConfigurationStorePrimaryWriteKeyArgs          
- ConnectionString string
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- Id string
- The ID of the Access Key.
- Secret string
- The Secret of the Access Key.
- ConnectionString string
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- Id string
- The ID of the Access Key.
- Secret string
- The Secret of the Access Key.
- connectionString String
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- id String
- The ID of the Access Key.
- secret String
- The Secret of the Access Key.
- connectionString string
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- id string
- The ID of the Access Key.
- secret string
- The Secret of the Access Key.
- connection_string str
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- id str
- The ID of the Access Key.
- secret str
- The Secret of the Access Key.
- connectionString String
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- id String
- The ID of the Access Key.
- secret String
- The Secret of the Access Key.
ConfigurationStoreReplica, ConfigurationStoreReplicaArgs      
ConfigurationStoreSecondaryReadKey, ConfigurationStoreSecondaryReadKeyArgs          
- ConnectionString string
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- Id string
- The ID of the Access Key.
- Secret string
- The Secret of the Access Key.
- ConnectionString string
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- Id string
- The ID of the Access Key.
- Secret string
- The Secret of the Access Key.
- connectionString String
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- id String
- The ID of the Access Key.
- secret String
- The Secret of the Access Key.
- connectionString string
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- id string
- The ID of the Access Key.
- secret string
- The Secret of the Access Key.
- connection_string str
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- id str
- The ID of the Access Key.
- secret str
- The Secret of the Access Key.
- connectionString String
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- id String
- The ID of the Access Key.
- secret String
- The Secret of the Access Key.
ConfigurationStoreSecondaryWriteKey, ConfigurationStoreSecondaryWriteKeyArgs          
- ConnectionString string
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- Id string
- The ID of the Access Key.
- Secret string
- The Secret of the Access Key.
- ConnectionString string
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- Id string
- The ID of the Access Key.
- Secret string
- The Secret of the Access Key.
- connectionString String
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- id String
- The ID of the Access Key.
- secret String
- The Secret of the Access Key.
- connectionString string
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- id string
- The ID of the Access Key.
- secret string
- The Secret of the Access Key.
- connection_string str
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- id str
- The ID of the Access Key.
- secret str
- The Secret of the Access Key.
- connectionString String
- The Connection String for this Access Key - consisting of the Endpoint, ID, and Secret.
- id String
- The ID of the Access Key.
- secret String
- The Secret of the Access Key.
Import
App Configurations can be imported using the resource id, e.g.
$ pulumi import azure:appconfiguration/configurationStore:ConfigurationStore appconf /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.AppConfiguration/configurationStores/appConf1
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.