published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
The configuration store along with all resource properties. The Configuration Store will have all information to begin utilizing it. API Version: 2020-06-01.
Example Usage
ConfigurationStores_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var configurationStore = new AzureNative.AppConfiguration.ConfigurationStore("configurationStore", new()
{
ConfigStoreName = "contoso",
Location = "westus",
ResourceGroupName = "myResourceGroup",
Sku = new AzureNative.AppConfiguration.Inputs.SkuArgs
{
Name = "Standard",
},
Tags =
{
{ "myTag", "myTagValue" },
},
});
});
package main
import (
appconfiguration "github.com/pulumi/pulumi-azure-native-sdk/appconfiguration"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := appconfiguration.NewConfigurationStore(ctx, "configurationStore", &appconfiguration.ConfigurationStoreArgs{
ConfigStoreName: pulumi.String("contoso"),
Location: pulumi.String("westus"),
ResourceGroupName: pulumi.String("myResourceGroup"),
Sku: &appconfiguration.SkuArgs{
Name: pulumi.String("Standard"),
},
Tags: pulumi.StringMap{
"myTag": pulumi.String("myTagValue"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.appconfiguration.ConfigurationStore;
import com.pulumi.azurenative.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 configurationStore = new ConfigurationStore("configurationStore", ConfigurationStoreArgs.builder()
.configStoreName("contoso")
.location("westus")
.resourceGroupName("myResourceGroup")
.sku(Map.of("name", "Standard"))
.tags(Map.of("myTag", "myTagValue"))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const configurationStore = new azure_native.appconfiguration.ConfigurationStore("configurationStore", {
configStoreName: "contoso",
location: "westus",
resourceGroupName: "myResourceGroup",
sku: {
name: "Standard",
},
tags: {
myTag: "myTagValue",
},
});
import pulumi
import pulumi_azure_native as azure_native
configuration_store = azure_native.appconfiguration.ConfigurationStore("configurationStore",
config_store_name="contoso",
location="westus",
resource_group_name="myResourceGroup",
sku=azure_native.appconfiguration.SkuArgs(
name="Standard",
),
tags={
"myTag": "myTagValue",
})
resources:
configurationStore:
type: azure-native:appconfiguration:ConfigurationStore
properties:
configStoreName: contoso
location: westus
resourceGroupName: myResourceGroup
sku:
name: Standard
tags:
myTag: myTagValue
ConfigurationStores_Create_WithIdentity
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var configurationStore = new AzureNative.AppConfiguration.ConfigurationStore("configurationStore", new()
{
ConfigStoreName = "contoso",
Identity = new AzureNative.AppConfiguration.Inputs.ResourceIdentityArgs
{
Type = "SystemAssigned, UserAssigned",
UserAssignedIdentities =
{
{ "/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourcegroups/myResourceGroup1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2", null },
},
},
Location = "westus",
ResourceGroupName = "myResourceGroup",
Sku = new AzureNative.AppConfiguration.Inputs.SkuArgs
{
Name = "Standard",
},
Tags =
{
{ "myTag", "myTagValue" },
},
});
});
package main
import (
appconfiguration "github.com/pulumi/pulumi-azure-native-sdk/appconfiguration"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := appconfiguration.NewConfigurationStore(ctx, "configurationStore", &appconfiguration.ConfigurationStoreArgs{
ConfigStoreName: pulumi.String("contoso"),
Identity: &appconfiguration.ResourceIdentityArgs{
Type: pulumi.String("SystemAssigned, UserAssigned"),
UserAssignedIdentities: pulumi.AnyMap{
"/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourcegroups/myResourceGroup1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2": nil,
},
},
Location: pulumi.String("westus"),
ResourceGroupName: pulumi.String("myResourceGroup"),
Sku: &appconfiguration.SkuArgs{
Name: pulumi.String("Standard"),
},
Tags: pulumi.StringMap{
"myTag": pulumi.String("myTagValue"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.appconfiguration.ConfigurationStore;
import com.pulumi.azurenative.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 configurationStore = new ConfigurationStore("configurationStore", ConfigurationStoreArgs.builder()
.configStoreName("contoso")
.identity(Map.ofEntries(
Map.entry("type", "SystemAssigned, UserAssigned"),
Map.entry("userAssignedIdentities", Map.of("/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourcegroups/myResourceGroup1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2", ))
))
.location("westus")
.resourceGroupName("myResourceGroup")
.sku(Map.of("name", "Standard"))
.tags(Map.of("myTag", "myTagValue"))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const configurationStore = new azure_native.appconfiguration.ConfigurationStore("configurationStore", {
configStoreName: "contoso",
identity: {
type: "SystemAssigned, UserAssigned",
userAssignedIdentities: {
"/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourcegroups/myResourceGroup1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2": {},
},
},
location: "westus",
resourceGroupName: "myResourceGroup",
sku: {
name: "Standard",
},
tags: {
myTag: "myTagValue",
},
});
import pulumi
import pulumi_azure_native as azure_native
configuration_store = azure_native.appconfiguration.ConfigurationStore("configurationStore",
config_store_name="contoso",
identity=azure_native.appconfiguration.ResourceIdentityArgs(
type="SystemAssigned, UserAssigned",
user_assigned_identities={
"/subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourcegroups/myResourceGroup1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2": {},
},
),
location="westus",
resource_group_name="myResourceGroup",
sku=azure_native.appconfiguration.SkuArgs(
name="Standard",
),
tags={
"myTag": "myTagValue",
})
resources:
configurationStore:
type: azure-native:appconfiguration:ConfigurationStore
properties:
configStoreName: contoso
identity:
type: SystemAssigned, UserAssigned
userAssignedIdentities:
? /subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourcegroups/myResourceGroup1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity2
: {}
location: westus
resourceGroupName: myResourceGroup
sku:
name: Standard
tags:
myTag: myTagValue
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,
sku: Optional[SkuArgs] = None,
config_store_name: Optional[str] = None,
encryption: Optional[EncryptionPropertiesArgs] = None,
identity: Optional[ResourceIdentityArgs] = None,
location: Optional[str] = None,
public_network_access: Optional[Union[str, PublicNetworkAccess]] = 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-native: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 AzureNative.AppConfiguration.ConfigurationStore("configurationStoreResource", new()
{
ResourceGroupName = "string",
Sku = new AzureNative.AppConfiguration.Inputs.SkuArgs
{
Name = "string",
},
ConfigStoreName = "string",
Encryption = new AzureNative.AppConfiguration.Inputs.EncryptionPropertiesArgs
{
KeyVaultProperties = new AzureNative.AppConfiguration.Inputs.KeyVaultPropertiesArgs
{
IdentityClientId = "string",
KeyIdentifier = "string",
},
},
Identity = new AzureNative.AppConfiguration.Inputs.ResourceIdentityArgs
{
Type = "string",
UserAssignedIdentities =
{
{ "string", "any" },
},
},
Location = "string",
PublicNetworkAccess = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := appconfiguration.NewConfigurationStore(ctx, "configurationStoreResource", &appconfiguration.ConfigurationStoreArgs{
ResourceGroupName: pulumi.String("string"),
Sku: &appconfiguration.SkuArgs{
Name: pulumi.String("string"),
},
ConfigStoreName: pulumi.String("string"),
Encryption: &appconfiguration.EncryptionPropertiesArgs{
KeyVaultProperties: &appconfiguration.KeyVaultPropertiesArgs{
IdentityClientId: pulumi.String("string"),
KeyIdentifier: pulumi.String("string"),
},
},
Identity: &appconfiguration.ResourceIdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentities: pulumi.Map{
"string": pulumi.Any("any"),
},
},
Location: pulumi.String("string"),
PublicNetworkAccess: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var configurationStoreResource = new ConfigurationStore("configurationStoreResource", ConfigurationStoreArgs.builder()
.resourceGroupName("string")
.sku(SkuArgs.builder()
.name("string")
.build())
.configStoreName("string")
.encryption(EncryptionPropertiesArgs.builder()
.keyVaultProperties(KeyVaultPropertiesArgs.builder()
.identityClientId("string")
.keyIdentifier("string")
.build())
.build())
.identity(ResourceIdentityArgs.builder()
.type("string")
.userAssignedIdentities(Map.of("string", "any"))
.build())
.location("string")
.publicNetworkAccess("string")
.tags(Map.of("string", "string"))
.build());
configuration_store_resource = azure_native.appconfiguration.ConfigurationStore("configurationStoreResource",
resource_group_name="string",
sku={
"name": "string",
},
config_store_name="string",
encryption={
"key_vault_properties": {
"identity_client_id": "string",
"key_identifier": "string",
},
},
identity={
"type": "string",
"user_assigned_identities": {
"string": "any",
},
},
location="string",
public_network_access="string",
tags={
"string": "string",
})
const configurationStoreResource = new azure_native.appconfiguration.ConfigurationStore("configurationStoreResource", {
resourceGroupName: "string",
sku: {
name: "string",
},
configStoreName: "string",
encryption: {
keyVaultProperties: {
identityClientId: "string",
keyIdentifier: "string",
},
},
identity: {
type: "string",
userAssignedIdentities: {
string: "any",
},
},
location: "string",
publicNetworkAccess: "string",
tags: {
string: "string",
},
});
type: azure-native:appconfiguration:ConfigurationStore
properties:
configStoreName: string
encryption:
keyVaultProperties:
identityClientId: string
keyIdentifier: string
identity:
type: string
userAssignedIdentities:
string: any
location: string
publicNetworkAccess: string
resourceGroupName: string
sku:
name: 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:
- Resource
Group stringName - The name of the resource group to which the container registry belongs.
- Sku
Pulumi.
Azure Native. App Configuration. Inputs. Sku - The sku of the configuration store.
- Config
Store stringName - The name of the configuration store.
- Encryption
Pulumi.
Azure Native. App Configuration. Inputs. Encryption Properties - The encryption settings of the configuration store.
- Identity
Pulumi.
Azure Native. App Configuration. Inputs. Resource Identity - The managed identity information, if configured.
- Location string
- The location of the resource. This cannot be changed after the resource is created.
- Public
Network string | Pulumi.Access Azure Native. App Configuration. Public Network Access - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- Dictionary<string, string>
- The tags of the resource.
- Resource
Group stringName - The name of the resource group to which the container registry belongs.
- Sku
Sku
Args - The sku of the configuration store.
- Config
Store stringName - The name of the configuration store.
- Encryption
Encryption
Properties Args - The encryption settings of the configuration store.
- Identity
Resource
Identity Args - The managed identity information, if configured.
- Location string
- The location of the resource. This cannot be changed after the resource is created.
- Public
Network string | PublicAccess Network Access - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- map[string]string
- The tags of the resource.
- resource
Group StringName - The name of the resource group to which the container registry belongs.
- sku Sku
- The sku of the configuration store.
- config
Store StringName - The name of the configuration store.
- encryption
Encryption
Properties - The encryption settings of the configuration store.
- identity
Resource
Identity - The managed identity information, if configured.
- location String
- The location of the resource. This cannot be changed after the resource is created.
- public
Network String | PublicAccess Network Access - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- Map<String,String>
- The tags of the resource.
- resource
Group stringName - The name of the resource group to which the container registry belongs.
- sku Sku
- The sku of the configuration store.
- config
Store stringName - The name of the configuration store.
- encryption
Encryption
Properties - The encryption settings of the configuration store.
- identity
Resource
Identity - The managed identity information, if configured.
- location string
- The location of the resource. This cannot be changed after the resource is created.
- public
Network string | PublicAccess Network Access - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- {[key: string]: string}
- The tags of the resource.
- resource_
group_ strname - The name of the resource group to which the container registry belongs.
- sku
Sku
Args - The sku of the configuration store.
- config_
store_ strname - The name of the configuration store.
- encryption
Encryption
Properties Args - The encryption settings of the configuration store.
- identity
Resource
Identity Args - The managed identity information, if configured.
- location str
- The location of the resource. This cannot be changed after the resource is created.
- public_
network_ str | Publicaccess Network Access - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- Mapping[str, str]
- The tags of the resource.
- resource
Group StringName - The name of the resource group to which the container registry belongs.
- sku Property Map
- The sku of the configuration store.
- config
Store StringName - The name of the configuration store.
- encryption Property Map
- The encryption settings of the configuration store.
- identity Property Map
- The managed identity information, if configured.
- location String
- The location of the resource. This cannot be changed after the resource is created.
- public
Network String | "Enabled" | "Disabled"Access - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- Map<String>
- The tags of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the ConfigurationStore resource produces the following output properties:
- Creation
Date string - The creation date of configuration store.
- Endpoint string
- The DNS endpoint where the configuration store API will be available.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource.
- Private
Endpoint List<Pulumi.Connections Azure Native. App Configuration. Outputs. Private Endpoint Connection Reference Response> - The list of private endpoint connections that are set up for this resource.
- Provisioning
State string - The provisioning state of the configuration store.
- Type string
- The type of the resource.
- Creation
Date string - The creation date of configuration store.
- Endpoint string
- The DNS endpoint where the configuration store API will be available.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource.
- Private
Endpoint []PrivateConnections Endpoint Connection Reference Response - The list of private endpoint connections that are set up for this resource.
- Provisioning
State string - The provisioning state of the configuration store.
- Type string
- The type of the resource.
- creation
Date String - The creation date of configuration store.
- endpoint String
- The DNS endpoint where the configuration store API will be available.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource.
- private
Endpoint List<PrivateConnections Endpoint Connection Reference Response> - The list of private endpoint connections that are set up for this resource.
- provisioning
State String - The provisioning state of the configuration store.
- type String
- The type of the resource.
- creation
Date string - The creation date of configuration store.
- endpoint string
- The DNS endpoint where the configuration store API will be available.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource.
- private
Endpoint PrivateConnections Endpoint Connection Reference Response[] - The list of private endpoint connections that are set up for this resource.
- provisioning
State string - The provisioning state of the configuration store.
- type string
- The type of the resource.
- creation_
date str - The creation date of configuration store.
- endpoint str
- The DNS endpoint where the configuration store API will be available.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource.
- private_
endpoint_ Sequence[Privateconnections Endpoint Connection Reference Response] - The list of private endpoint connections that are set up for this resource.
- provisioning_
state str - The provisioning state of the configuration store.
- type str
- The type of the resource.
- creation
Date String - The creation date of configuration store.
- endpoint String
- The DNS endpoint where the configuration store API will be available.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource.
- private
Endpoint List<Property Map>Connections - The list of private endpoint connections that are set up for this resource.
- provisioning
State String - The provisioning state of the configuration store.
- type String
- The type of the resource.
Supporting Types
EncryptionProperties, EncryptionPropertiesArgs
The encryption settings for a configuration store.- Key
Vault Pulumi.Properties Azure Native. App Configuration. Inputs. Key Vault Properties - Key vault properties.
- Key
Vault KeyProperties Vault Properties - Key vault properties.
- key
Vault KeyProperties Vault Properties - Key vault properties.
- key
Vault KeyProperties Vault Properties - Key vault properties.
- key_
vault_ Keyproperties Vault Properties - Key vault properties.
- key
Vault Property MapProperties - Key vault properties.
EncryptionPropertiesResponse, EncryptionPropertiesResponseArgs
The encryption settings for a configuration store.- Key
Vault Pulumi.Properties Azure Native. App Configuration. Inputs. Key Vault Properties Response - Key vault properties.
- Key
Vault KeyProperties Vault Properties Response - Key vault properties.
- key
Vault KeyProperties Vault Properties Response - Key vault properties.
- key
Vault KeyProperties Vault Properties Response - Key vault properties.
- key_
vault_ Keyproperties Vault Properties Response - Key vault properties.
- key
Vault Property MapProperties - Key vault properties.
IdentityType, IdentityTypeArgs
- None
None- System
Assigned SystemAssigned- User
Assigned UserAssigned- System
Assigned_User Assigned SystemAssigned, UserAssigned
- Identity
Type None None- Identity
Type System Assigned SystemAssigned- Identity
Type User Assigned UserAssigned- Identity
Type_System Assigned_User Assigned SystemAssigned, UserAssigned
- None
None- System
Assigned SystemAssigned- User
Assigned UserAssigned- System
Assigned_User Assigned SystemAssigned, UserAssigned
- None
None- System
Assigned SystemAssigned- User
Assigned UserAssigned- System
Assigned_User Assigned SystemAssigned, UserAssigned
- NONE
None- SYSTEM_ASSIGNED
SystemAssigned- USER_ASSIGNED
UserAssigned- SYSTEM_ASSIGNED_USER_ASSIGNED
SystemAssigned, UserAssigned
- "None"
None- "System
Assigned" SystemAssigned- "User
Assigned" UserAssigned- "System
Assigned, User Assigned" SystemAssigned, UserAssigned
KeyVaultProperties, KeyVaultPropertiesArgs
Settings concerning key vault encryption for a configuration store.- Identity
Client stringId - The client id of the identity which will be used to access key vault.
- Key
Identifier string - The URI of the key vault key used to encrypt data.
- Identity
Client stringId - The client id of the identity which will be used to access key vault.
- Key
Identifier string - The URI of the key vault key used to encrypt data.
- identity
Client StringId - The client id of the identity which will be used to access key vault.
- key
Identifier String - The URI of the key vault key used to encrypt data.
- identity
Client stringId - The client id of the identity which will be used to access key vault.
- key
Identifier string - The URI of the key vault key used to encrypt data.
- identity_
client_ strid - The client id of the identity which will be used to access key vault.
- key_
identifier str - The URI of the key vault key used to encrypt data.
- identity
Client StringId - The client id of the identity which will be used to access key vault.
- key
Identifier String - The URI of the key vault key used to encrypt data.
KeyVaultPropertiesResponse, KeyVaultPropertiesResponseArgs
Settings concerning key vault encryption for a configuration store.- Identity
Client stringId - The client id of the identity which will be used to access key vault.
- Key
Identifier string - The URI of the key vault key used to encrypt data.
- Identity
Client stringId - The client id of the identity which will be used to access key vault.
- Key
Identifier string - The URI of the key vault key used to encrypt data.
- identity
Client StringId - The client id of the identity which will be used to access key vault.
- key
Identifier String - The URI of the key vault key used to encrypt data.
- identity
Client stringId - The client id of the identity which will be used to access key vault.
- key
Identifier string - The URI of the key vault key used to encrypt data.
- identity_
client_ strid - The client id of the identity which will be used to access key vault.
- key_
identifier str - The URI of the key vault key used to encrypt data.
- identity
Client StringId - The client id of the identity which will be used to access key vault.
- key
Identifier String - The URI of the key vault key used to encrypt data.
PrivateEndpointConnectionReferenceResponse, PrivateEndpointConnectionReferenceResponseArgs
A reference to a related private endpoint connection.- Id string
- The resource ID.
- Name string
- The name of the resource.
- Private
Link Pulumi.Service Connection State Azure Native. App Configuration. Inputs. Private Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- Provisioning
State string - The provisioning status of the private endpoint connection.
- Type string
- The type of the resource.
- Private
Endpoint Pulumi.Azure Native. App Configuration. Inputs. Private Endpoint Response - The resource of private endpoint.
- Id string
- The resource ID.
- Name string
- The name of the resource.
- Private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- Provisioning
State string - The provisioning status of the private endpoint connection.
- Type string
- The type of the resource.
- Private
Endpoint PrivateEndpoint Response - The resource of private endpoint.
- id String
- The resource ID.
- name String
- The name of the resource.
- private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State String - The provisioning status of the private endpoint connection.
- type String
- The type of the resource.
- private
Endpoint PrivateEndpoint Response - The resource of private endpoint.
- id string
- The resource ID.
- name string
- The name of the resource.
- private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State string - The provisioning status of the private endpoint connection.
- type string
- The type of the resource.
- private
Endpoint PrivateEndpoint Response - The resource of private endpoint.
- id str
- The resource ID.
- name str
- The name of the resource.
- private_
link_ Privateservice_ connection_ state Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning_
state str - The provisioning status of the private endpoint connection.
- type str
- The type of the resource.
- private_
endpoint PrivateEndpoint Response - The resource of private endpoint.
- id String
- The resource ID.
- name String
- The name of the resource.
- private
Link Property MapService Connection State - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State String - The provisioning status of the private endpoint connection.
- type String
- The type of the resource.
- private
Endpoint Property Map - The resource of private endpoint.
PrivateEndpointResponse, PrivateEndpointResponseArgs
Private endpoint which a connection belongs to.- Id string
- The resource Id for private endpoint
- Id string
- The resource Id for private endpoint
- id String
- The resource Id for private endpoint
- id string
- The resource Id for private endpoint
- id str
- The resource Id for private endpoint
- id String
- The resource Id for private endpoint
PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs
The state of a private link service connection.- Actions
Required string - Any action that is required beyond basic workflow (approve/ reject/ disconnect)
- Description string
- The private link service connection description.
- Status string
- The private link service connection status.
- Actions
Required string - Any action that is required beyond basic workflow (approve/ reject/ disconnect)
- Description string
- The private link service connection description.
- Status string
- The private link service connection status.
- actions
Required String - Any action that is required beyond basic workflow (approve/ reject/ disconnect)
- description String
- The private link service connection description.
- status String
- The private link service connection status.
- actions
Required string - Any action that is required beyond basic workflow (approve/ reject/ disconnect)
- description string
- The private link service connection description.
- status string
- The private link service connection status.
- actions_
required str - Any action that is required beyond basic workflow (approve/ reject/ disconnect)
- description str
- The private link service connection description.
- status str
- The private link service connection status.
- actions
Required String - Any action that is required beyond basic workflow (approve/ reject/ disconnect)
- description String
- The private link service connection description.
- status String
- The private link service connection status.
PublicNetworkAccess, PublicNetworkAccessArgs
- Enabled
Enabled- Disabled
Disabled
- Public
Network Access Enabled Enabled- Public
Network Access Disabled Disabled
- Enabled
Enabled- Disabled
Disabled
- Enabled
Enabled- Disabled
Disabled
- ENABLED
Enabled- DISABLED
Disabled
- "Enabled"
Enabled- "Disabled"
Disabled
ResourceIdentity, ResourceIdentityArgs
An identity that can be associated with a resource.- Type
string | Pulumi.
Azure Native. App Configuration. Identity Type - The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
- User
Assigned Dictionary<string, object>Identities - The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- Type
string | Identity
Type - The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
- User
Assigned map[string]interface{}Identities - The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
String | Identity
Type - The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
- user
Assigned Map<String,Object>Identities - The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
string | Identity
Type - The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
- user
Assigned {[key: string]: any}Identities - The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
str | Identity
Type - The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
- user_
assigned_ Mapping[str, Any]identities - The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
String | "None" | "System
Assigned" | "User Assigned" | "System Assigned, User Assigned" - The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
- user
Assigned Map<Any>Identities - The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
ResourceIdentityResponse, ResourceIdentityResponseArgs
An identity that can be associated with a resource.- Principal
Id string - The principal id of the identity. This property will only be provided for a system-assigned identity.
- Tenant
Id string - The tenant id associated with the resource's identity. This property will only be provided for a system-assigned identity.
- Type string
- The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. App Configuration. Inputs. User Identity Response> - The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- Principal
Id string - The principal id of the identity. This property will only be provided for a system-assigned identity.
- Tenant
Id string - The tenant id associated with the resource's identity. This property will only be provided for a system-assigned identity.
- Type string
- The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
- User
Assigned map[string]UserIdentities Identity Response - The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal
Id String - The principal id of the identity. This property will only be provided for a system-assigned identity.
- tenant
Id String - The tenant id associated with the resource's identity. This property will only be provided for a system-assigned identity.
- type String
- The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
- user
Assigned Map<String,UserIdentities Identity Response> - The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal
Id string - The principal id of the identity. This property will only be provided for a system-assigned identity.
- tenant
Id string - The tenant id associated with the resource's identity. This property will only be provided for a system-assigned identity.
- type string
- The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
- user
Assigned {[key: string]: UserIdentities Identity Response} - The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal_
id str - The principal id of the identity. This property will only be provided for a system-assigned identity.
- tenant_
id str - The tenant id associated with the resource's identity. This property will only be provided for a system-assigned identity.
- type str
- The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
- user_
assigned_ Mapping[str, Useridentities Identity Response] - The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal
Id String - The principal id of the identity. This property will only be provided for a system-assigned identity.
- tenant
Id String - The tenant id associated with the resource's identity. This property will only be provided for a system-assigned identity.
- type String
- The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
- user
Assigned Map<Property Map>Identities - The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
Sku, SkuArgs
Describes a configuration store SKU.- Name string
- The SKU name of the configuration store.
- Name string
- The SKU name of the configuration store.
- name String
- The SKU name of the configuration store.
- name string
- The SKU name of the configuration store.
- name str
- The SKU name of the configuration store.
- name String
- The SKU name of the configuration store.
SkuResponse, SkuResponseArgs
Describes a configuration store SKU.- Name string
- The SKU name of the configuration store.
- Name string
- The SKU name of the configuration store.
- name String
- The SKU name of the configuration store.
- name string
- The SKU name of the configuration store.
- name str
- The SKU name of the configuration store.
- name String
- The SKU name of the configuration store.
UserIdentityResponse, UserIdentityResponseArgs
A resource identity that is managed by the user of the service.- Client
Id string - The client ID of the user-assigned identity.
- Principal
Id string - The principal ID of the user-assigned identity.
- Client
Id string - The client ID of the user-assigned identity.
- Principal
Id string - The principal ID of the user-assigned identity.
- client
Id String - The client ID of the user-assigned identity.
- principal
Id String - The principal ID of the user-assigned identity.
- client
Id string - The client ID of the user-assigned identity.
- principal
Id string - The principal ID of the user-assigned identity.
- client_
id str - The client ID of the user-assigned identity.
- principal_
id str - The principal ID of the user-assigned identity.
- client
Id String - The client ID of the user-assigned identity.
- principal
Id String - The principal ID of the user-assigned identity.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:appconfiguration:ConfigurationStore contoso /subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/myResourceGroup/providers/Microsoft.AppConfiguration/configurationStores/contoso
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
published on Monday, Mar 9, 2026 by Pulumi
