1. Packages
  2. Azure Classic
  3. API Docs
  4. appconfiguration
  5. ConfigurationStore

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Manages an Azure App Configuration.

    Example Usage

    using Pulumi;
    using Azure = Pulumi.Azure;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var rg = new Azure.Core.ResourceGroup("rg", new Azure.Core.ResourceGroupArgs
            {
                Location = "West Europe",
            });
            var appconf = new Azure.AppConfiguration.ConfigurationStore("appconf", new Azure.AppConfiguration.ConfigurationStoreArgs
            {
                ResourceGroupName = rg.Name,
                Location = rg.Location,
            });
        }
    
    }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/appconfiguration"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		rg, err := core.NewResourceGroup(ctx, "rg", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = appconfiguration.NewConfigurationStore(ctx, "appconf", &appconfiguration.ConfigurationStoreArgs{
    			ResourceGroupName: rg.Name,
    			Location:          rg.Location,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const rg = new azure.core.ResourceGroup("rg", {location: "West Europe"});
    const appconf = new azure.appconfiguration.ConfigurationStore("appconf", {
        resourceGroupName: rg.name,
        location: rg.location,
    });
    
    import pulumi
    import pulumi_azure as azure
    
    rg = azure.core.ResourceGroup("rg", location="West Europe")
    appconf = azure.appconfiguration.ConfigurationStore("appconf",
        resource_group_name=rg.name,
        location=rg.location)
    

    Example coming soon!

    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,
                           identity: Optional[ConfigurationStoreIdentityArgs] = None,
                           location: Optional[str] = None,
                           name: Optional[str] = None,
                           sku: Optional[str] = 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",
        Identity = new Azure.AppConfiguration.Inputs.ConfigurationStoreIdentityArgs
        {
            Type = "string",
            IdentityIds = new[]
            {
                "string",
            },
            PrincipalId = "string",
            TenantId = "string",
        },
        Location = "string",
        Name = "string",
        Sku = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := appconfiguration.NewConfigurationStore(ctx, "configurationStoreResource", &appconfiguration.ConfigurationStoreArgs{
    	ResourceGroupName: pulumi.String("string"),
    	Identity: &appconfiguration.ConfigurationStoreIdentityArgs{
    		Type: pulumi.String("string"),
    		IdentityIds: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		PrincipalId: pulumi.String("string"),
    		TenantId:    pulumi.String("string"),
    	},
    	Location: pulumi.String("string"),
    	Name:     pulumi.String("string"),
    	Sku:      pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var configurationStoreResource = new ConfigurationStore("configurationStoreResource", ConfigurationStoreArgs.builder()
        .resourceGroupName("string")
        .identity(ConfigurationStoreIdentityArgs.builder()
            .type("string")
            .identityIds("string")
            .principalId("string")
            .tenantId("string")
            .build())
        .location("string")
        .name("string")
        .sku("string")
        .tags(Map.of("string", "string"))
        .build());
    
    configuration_store_resource = azure.appconfiguration.ConfigurationStore("configurationStoreResource",
        resource_group_name="string",
        identity={
            "type": "string",
            "identity_ids": ["string"],
            "principal_id": "string",
            "tenant_id": "string",
        },
        location="string",
        name="string",
        sku="string",
        tags={
            "string": "string",
        })
    
    const configurationStoreResource = new azure.appconfiguration.ConfigurationStore("configurationStoreResource", {
        resourceGroupName: "string",
        identity: {
            type: "string",
            identityIds: ["string"],
            principalId: "string",
            tenantId: "string",
        },
        location: "string",
        name: "string",
        sku: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure:appconfiguration:ConfigurationStore
    properties:
        identity:
            identityIds:
                - string
            principalId: string
            tenantId: string
            type: string
        location: string
        name: string
        resourceGroupName: string
        sku: string
        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:

    ResourceGroupName string
    The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
    Identity ConfigurationStoreIdentity
    An identity block as defined below.
    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.
    Sku string
    The SKU name of the the App Configuration. Possible values are free and standard.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    ResourceGroupName string
    The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
    Identity ConfigurationStoreIdentityArgs
    An identity block as defined below.
    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.
    Sku string
    The SKU name of the the App Configuration. Possible values are free and standard.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    resourceGroupName String
    The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
    identity ConfigurationStoreIdentity
    An identity block as defined below.
    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.
    sku String
    The SKU name of the the App Configuration. Possible values are free and standard.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    resourceGroupName string
    The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
    identity ConfigurationStoreIdentity
    An identity block as defined below.
    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.
    sku string
    The SKU name of the the App Configuration. Possible values are free and standard.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    resource_group_name str
    The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
    identity ConfigurationStoreIdentityArgs
    An identity block as defined below.
    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.
    sku str
    The SKU name of the the App Configuration. Possible values are free and standard.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    resourceGroupName String
    The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
    identity Property Map
    An identity block as defined below.
    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.
    sku String
    The SKU name of the the App Configuration. Possible values are free and standard.
    tags 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.
    Id string
    The provider-assigned unique ID for this managed resource.
    PrimaryReadKeys List<ConfigurationStorePrimaryReadKey>
    A primary_read_key block as defined below containing the primary read access key.
    PrimaryWriteKeys List<ConfigurationStorePrimaryWriteKey>
    A primary_write_key block as defined below containing the primary write access key.
    SecondaryReadKeys List<ConfigurationStoreSecondaryReadKey>
    A secondary_read_key block as defined below containing the secondary read access key.
    SecondaryWriteKeys List<ConfigurationStoreSecondaryWriteKey>
    A secondary_write_key block as defined below containing the secondary write access key.
    Endpoint string
    The URL of the App Configuration.
    Id string
    The provider-assigned unique ID for this managed resource.
    PrimaryReadKeys []ConfigurationStorePrimaryReadKey
    A primary_read_key block as defined below containing the primary read access key.
    PrimaryWriteKeys []ConfigurationStorePrimaryWriteKey
    A primary_write_key block as defined below containing the primary write access key.
    SecondaryReadKeys []ConfigurationStoreSecondaryReadKey
    A secondary_read_key block as defined below containing the secondary read access key.
    SecondaryWriteKeys []ConfigurationStoreSecondaryWriteKey
    A secondary_write_key block as defined below containing the secondary write access key.
    endpoint String
    The URL of the App Configuration.
    id String
    The provider-assigned unique ID for this managed resource.
    primaryReadKeys List<ConfigurationStorePrimaryReadKey>
    A primary_read_key block as defined below containing the primary read access key.
    primaryWriteKeys List<ConfigurationStorePrimaryWriteKey>
    A primary_write_key block as defined below containing the primary write access key.
    secondaryReadKeys List<ConfigurationStoreSecondaryReadKey>
    A secondary_read_key block as defined below containing the secondary read access key.
    secondaryWriteKeys List<ConfigurationStoreSecondaryWriteKey>
    A secondary_write_key block as defined below containing the secondary write access key.
    endpoint string
    The URL of the App Configuration.
    id string
    The provider-assigned unique ID for this managed resource.
    primaryReadKeys ConfigurationStorePrimaryReadKey[]
    A primary_read_key block as defined below containing the primary read access key.
    primaryWriteKeys ConfigurationStorePrimaryWriteKey[]
    A primary_write_key block as defined below containing the primary write access key.
    secondaryReadKeys ConfigurationStoreSecondaryReadKey[]
    A secondary_read_key block as defined below containing the secondary read access key.
    secondaryWriteKeys ConfigurationStoreSecondaryWriteKey[]
    A secondary_write_key block as defined below containing the secondary write access key.
    endpoint str
    The URL of the App Configuration.
    id str
    The provider-assigned unique ID for this managed resource.
    primary_read_keys Sequence[ConfigurationStorePrimaryReadKey]
    A primary_read_key block as defined below containing the primary read access key.
    primary_write_keys Sequence[ConfigurationStorePrimaryWriteKey]
    A primary_write_key block as defined below containing the primary write access key.
    secondary_read_keys Sequence[ConfigurationStoreSecondaryReadKey]
    A secondary_read_key block as defined below containing the secondary read access key.
    secondary_write_keys Sequence[ConfigurationStoreSecondaryWriteKey]
    A secondary_write_key block as defined below containing the secondary write access key.
    endpoint String
    The URL of the App Configuration.
    id String
    The provider-assigned unique ID for this managed resource.
    primaryReadKeys List<Property Map>
    A primary_read_key block as defined below containing the primary read access key.
    primaryWriteKeys List<Property Map>
    A primary_write_key block as defined below containing the primary write access key.
    secondaryReadKeys List<Property Map>
    A secondary_read_key block as defined below containing the secondary read access key.
    secondaryWriteKeys List<Property Map>
    A secondary_write_key block 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,
            endpoint: Optional[str] = None,
            identity: Optional[ConfigurationStoreIdentityArgs] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            primary_read_keys: Optional[Sequence[ConfigurationStorePrimaryReadKeyArgs]] = None,
            primary_write_keys: Optional[Sequence[ConfigurationStorePrimaryWriteKeyArgs]] = 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,
            tags: Optional[Mapping[str, str]] = None) -> ConfigurationStore
    func 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.
    The following state arguments are supported:
    Endpoint string
    The URL of the App Configuration.
    Identity ConfigurationStoreIdentity
    An identity block as defined below.
    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.
    PrimaryReadKeys List<ConfigurationStorePrimaryReadKey>
    A primary_read_key block as defined below containing the primary read access key.
    PrimaryWriteKeys List<ConfigurationStorePrimaryWriteKey>
    A primary_write_key block as defined below containing the primary write access key.
    ResourceGroupName string
    The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
    SecondaryReadKeys List<ConfigurationStoreSecondaryReadKey>
    A secondary_read_key block as defined below containing the secondary read access key.
    SecondaryWriteKeys List<ConfigurationStoreSecondaryWriteKey>
    A secondary_write_key block as defined below containing the secondary write access key.
    Sku string
    The SKU name of the the App Configuration. Possible values are free and standard.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    Endpoint string
    The URL of the App Configuration.
    Identity ConfigurationStoreIdentityArgs
    An identity block as defined below.
    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.
    PrimaryReadKeys []ConfigurationStorePrimaryReadKeyArgs
    A primary_read_key block as defined below containing the primary read access key.
    PrimaryWriteKeys []ConfigurationStorePrimaryWriteKeyArgs
    A primary_write_key block as defined below containing the primary write access key.
    ResourceGroupName string
    The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
    SecondaryReadKeys []ConfigurationStoreSecondaryReadKeyArgs
    A secondary_read_key block as defined below containing the secondary read access key.
    SecondaryWriteKeys []ConfigurationStoreSecondaryWriteKeyArgs
    A secondary_write_key block as defined below containing the secondary write access key.
    Sku string
    The SKU name of the the App Configuration. Possible values are free and standard.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    endpoint String
    The URL of the App Configuration.
    identity ConfigurationStoreIdentity
    An identity block as defined below.
    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.
    primaryReadKeys List<ConfigurationStorePrimaryReadKey>
    A primary_read_key block as defined below containing the primary read access key.
    primaryWriteKeys List<ConfigurationStorePrimaryWriteKey>
    A primary_write_key block as defined below containing the primary write access key.
    resourceGroupName String
    The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
    secondaryReadKeys List<ConfigurationStoreSecondaryReadKey>
    A secondary_read_key block as defined below containing the secondary read access key.
    secondaryWriteKeys List<ConfigurationStoreSecondaryWriteKey>
    A secondary_write_key block as defined below containing the secondary write access key.
    sku String
    The SKU name of the the App Configuration. Possible values are free and standard.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    endpoint string
    The URL of the App Configuration.
    identity ConfigurationStoreIdentity
    An identity block as defined below.
    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.
    primaryReadKeys ConfigurationStorePrimaryReadKey[]
    A primary_read_key block as defined below containing the primary read access key.
    primaryWriteKeys ConfigurationStorePrimaryWriteKey[]
    A primary_write_key block as defined below containing the primary write access key.
    resourceGroupName string
    The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
    secondaryReadKeys ConfigurationStoreSecondaryReadKey[]
    A secondary_read_key block as defined below containing the secondary read access key.
    secondaryWriteKeys ConfigurationStoreSecondaryWriteKey[]
    A secondary_write_key block as defined below containing the secondary write access key.
    sku string
    The SKU name of the the App Configuration. Possible values are free and standard.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    endpoint str
    The URL of the App Configuration.
    identity ConfigurationStoreIdentityArgs
    An identity block as defined below.
    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_keys Sequence[ConfigurationStorePrimaryReadKeyArgs]
    A primary_read_key block as defined below containing the primary read access key.
    primary_write_keys Sequence[ConfigurationStorePrimaryWriteKeyArgs]
    A primary_write_key block as defined below containing the primary write access key.
    resource_group_name str
    The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
    secondary_read_keys Sequence[ConfigurationStoreSecondaryReadKeyArgs]
    A secondary_read_key block as defined below containing the secondary read access key.
    secondary_write_keys Sequence[ConfigurationStoreSecondaryWriteKeyArgs]
    A secondary_write_key block as defined below containing the secondary write access key.
    sku str
    The SKU name of the the App Configuration. Possible values are free and standard.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    endpoint String
    The URL of the App Configuration.
    identity Property Map
    An identity block as defined below.
    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.
    primaryReadKeys List<Property Map>
    A primary_read_key block as defined below containing the primary read access key.
    primaryWriteKeys List<Property Map>
    A primary_write_key block as defined below containing the primary write access key.
    resourceGroupName String
    The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
    secondaryReadKeys List<Property Map>
    A secondary_read_key block as defined below containing the secondary read access key.
    secondaryWriteKeys List<Property Map>
    A secondary_write_key block as defined below containing the secondary write access key.
    sku String
    The SKU name of the the App Configuration. Possible values are free and standard.
    tags Map<String>
    A mapping of tags to assign to the resource.

    Supporting Types

    ConfigurationStoreIdentity, ConfigurationStoreIdentityArgs

    Type string
    Specifies the type of Managed Service Identity that should be configured on this API Management Service. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both).
    IdentityIds List<string>
    A list of IDs for User Assigned Managed Identity resources to be assigned.
    PrincipalId string
    The ID of the Principal (Client) in Azure Active Directory.
    TenantId string
    The ID of the Azure Active Directory Tenant.
    Type string
    Specifies the type of Managed Service Identity that should be configured on this API Management Service. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both).
    IdentityIds []string
    A list of IDs for User Assigned Managed Identity resources to be assigned.
    PrincipalId string
    The ID of the Principal (Client) in Azure Active Directory.
    TenantId string
    The ID of the Azure Active Directory Tenant.
    type String
    Specifies the type of Managed Service Identity that should be configured on this API Management Service. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both).
    identityIds List<String>
    A list of IDs for User Assigned Managed Identity resources to be assigned.
    principalId String
    The ID of the Principal (Client) in Azure Active Directory.
    tenantId String
    The ID of the Azure Active Directory Tenant.
    type string
    Specifies the type of Managed Service Identity that should be configured on this API Management Service. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both).
    identityIds string[]
    A list of IDs for User Assigned Managed Identity resources to be assigned.
    principalId string
    The ID of the Principal (Client) in Azure Active Directory.
    tenantId string
    The ID of the Azure Active Directory Tenant.
    type str
    Specifies the type of Managed Service Identity that should be configured on this API Management Service. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both).
    identity_ids Sequence[str]
    A list of IDs for User Assigned Managed Identity resources to be assigned.
    principal_id str
    The ID of the Principal (Client) in Azure Active Directory.
    tenant_id str
    The ID of the Azure Active Directory Tenant.
    type String
    Specifies the type of Managed Service Identity that should be configured on this API Management Service. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both).
    identityIds List<String>
    A list of IDs for User Assigned Managed Identity resources to be assigned.
    principalId String
    The ID of the Principal (Client) in Azure Active Directory.
    tenantId String
    The ID of the Azure Active Directory Tenant.

    ConfigurationStorePrimaryReadKey, ConfigurationStorePrimaryReadKeyArgs

    ConnectionString string
    The Connection String for this Access Key - comprising 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 - comprising 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 - comprising 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 - comprising 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 - comprising 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 - comprising 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 - comprising 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 - comprising 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 - comprising 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 - comprising 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 - comprising 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 - comprising of the Endpoint, ID and Secret.
    id String
    The ID of the Access Key.
    secret String
    The Secret of the Access Key.

    ConfigurationStoreSecondaryReadKey, ConfigurationStoreSecondaryReadKeyArgs

    ConnectionString string
    The Connection String for this Access Key - comprising 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 - comprising 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 - comprising 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 - comprising 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 - comprising 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 - comprising 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 - comprising 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 - comprising 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 - comprising 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 - comprising 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 - comprising 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 - comprising 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 azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.