Azure Classic
ConfigurationStore
Manages an Azure App Configuration.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var example = new Azure.Core.ResourceGroup("example", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var appconf = new Azure.AppConfiguration.ConfigurationStore("appconf", new Azure.AppConfiguration.ConfigurationStoreArgs
{
ResourceGroupName = example.Name,
Location = example.Location,
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appconfiguration"
"github.com/pulumi/pulumi-azure/sdk/v5/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{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
_, err = appconfiguration.NewConfigurationStore(ctx, "appconf", &appconfiguration.ConfigurationStoreArgs{
ResourceGroupName: example.Name,
Location: example.Location,
})
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.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()
.location("West Europe")
.build());
var appconf = new ConfigurationStore("appconf", ConfigurationStoreArgs.builder()
.resourceGroupName(example.name())
.location(example.location())
.build());
}
}
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example", location="West Europe")
appconf = azure.appconfiguration.ConfigurationStore("appconf",
resource_group_name=example.name,
location=example.location)
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {location: "West Europe"});
const appconf = new azure.appconfiguration.ConfigurationStore("appconf", {
resourceGroupName: example.name,
location: example.location,
});
resources:
example:
type: azure:core:ResourceGroup
properties:
location: West Europe
appconf:
type: azure:appconfiguration:ConfigurationStore
properties:
resourceGroupName: ${example.name}
location: ${example.location}
Create a ConfigurationStore Resource
new ConfigurationStore(name: string, args: ConfigurationStoreArgs, opts?: CustomResourceOptions);
@overload
def ConfigurationStore(resource_name: str,
opts: Optional[ResourceOptions] = None,
identity: Optional[ConfigurationStoreIdentityArgs] = None,
location: Optional[str] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
sku: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
@overload
def ConfigurationStore(resource_name: str,
args: ConfigurationStoreArgs,
opts: Optional[ResourceOptions] = 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.
- 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.
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
The ConfigurationStore resource accepts the following input properties:
- Resource
Group stringName The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- Identity
Configuration
Store Identity Args 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 App Configuration. Possible values are
free
andstandard
.- Dictionary<string, string>
A mapping of tags to assign to the resource.
- Resource
Group stringName The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- Identity
Configuration
Store Identity Args 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 App Configuration. Possible values are
free
andstandard
.- map[string]string
A mapping of tags to assign to the resource.
- resource
Group StringName The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- identity
Configuration
Store Identity Args 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 App Configuration. Possible values are
free
andstandard
.- Map<String,String>
A mapping of tags to assign to the resource.
- resource
Group stringName The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- identity
Configuration
Store Identity Args 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 App Configuration. Possible values are
free
andstandard
.- {[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.
- identity
Configuration
Store Identity Args 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 App Configuration. Possible values are
free
andstandard
.- Mapping[str, str]
A mapping of tags to assign to the resource.
- resource
Group StringName 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 App Configuration. Possible values are
free
andstandard
.- 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.
- Primary
Read List<ConfigurationKeys Store Primary Read Key> A
primary_read_key
block as defined below containing the primary read access key.- Primary
Write List<ConfigurationKeys Store Primary Write Key> A
primary_write_key
block as defined below containing the primary write access key.- Secondary
Read List<ConfigurationKeys Store Secondary Read Key> A
secondary_read_key
block as defined below containing the secondary read access key.- Secondary
Write List<ConfigurationKeys Store Secondary Write Key> 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.
- Primary
Read []ConfigurationKeys Store Primary Read Key A
primary_read_key
block as defined below containing the primary read access key.- Primary
Write []ConfigurationKeys Store Primary Write Key A
primary_write_key
block as defined below containing the primary write access key.- Secondary
Read []ConfigurationKeys Store Secondary Read Key A
secondary_read_key
block as defined below containing the secondary read access key.- Secondary
Write []ConfigurationKeys Store Secondary Write Key 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.
- primary
Read List<ConfigurationKeys Store Primary Read Key> A
primary_read_key
block as defined below containing the primary read access key.- primary
Write List<ConfigurationKeys Store Primary Write Key> A
primary_write_key
block as defined below containing the primary write access key.- secondary
Read List<ConfigurationKeys Store Secondary Read Key> A
secondary_read_key
block as defined below containing the secondary read access key.- secondary
Write List<ConfigurationKeys Store Secondary Write Key> 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.
- primary
Read ConfigurationKeys Store Primary Read Key[] A
primary_read_key
block as defined below containing the primary read access key.- primary
Write ConfigurationKeys Store Primary Write Key[] A
primary_write_key
block as defined below containing the primary write access key.- secondary
Read ConfigurationKeys Store Secondary Read Key[] A
secondary_read_key
block as defined below containing the secondary read access key.- secondary
Write ConfigurationKeys Store Secondary Write Key[] 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_ Sequence[Configurationkeys Store Primary Read Key] A
primary_read_key
block as defined below containing the primary read access key.- primary_
write_ Sequence[Configurationkeys Store Primary Write Key] A
primary_write_key
block as defined below containing the primary write access key.- secondary_
read_ Sequence[Configurationkeys Store Secondary Read Key] A
secondary_read_key
block as defined below containing the secondary read access key.- secondary_
write_ Sequence[Configurationkeys Store Secondary Write Key] 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.
- primary
Read List<Property Map>Keys A
primary_read_key
block as defined below containing the primary read access key.- primary
Write List<Property Map>Keys A
primary_write_key
block as defined below containing the primary write access key.- secondary
Read List<Property Map>Keys A
secondary_read_key
block as defined below containing the secondary read access key.- secondary
Write List<Property Map>Keys A
secondary_write_key
block as defined below containing the secondary write access key.
Look up an 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)
Resource lookup is not supported in YAML
- 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.
- Endpoint string
The URL of the App Configuration.
- Identity
Configuration
Store Identity Args 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.
- Primary
Read List<ConfigurationKeys Store Primary Read Key Args> A
primary_read_key
block as defined below containing the primary read access key.- Primary
Write List<ConfigurationKeys Store Primary Write Key Args> A
primary_write_key
block as defined below containing the primary write access key.- Resource
Group stringName The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- Secondary
Read List<ConfigurationKeys Store Secondary Read Key Args> A
secondary_read_key
block as defined below containing the secondary read access key.- Secondary
Write List<ConfigurationKeys Store Secondary Write Key Args> A
secondary_write_key
block as defined below containing the secondary write access key.- Sku string
The SKU name of the App Configuration. Possible values are
free
andstandard
.- Dictionary<string, string>
A mapping of tags to assign to the resource.
- Endpoint string
The URL of the App Configuration.
- Identity
Configuration
Store Identity Args 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.
- Primary
Read []ConfigurationKeys Store Primary Read Key Args A
primary_read_key
block as defined below containing the primary read access key.- Primary
Write []ConfigurationKeys Store Primary Write Key Args A
primary_write_key
block as defined below containing the primary write access key.- Resource
Group stringName The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- Secondary
Read []ConfigurationKeys Store Secondary Read Key Args A
secondary_read_key
block as defined below containing the secondary read access key.- Secondary
Write []ConfigurationKeys Store Secondary Write Key Args A
secondary_write_key
block as defined below containing the secondary write access key.- Sku string
The SKU name of the App Configuration. Possible values are
free
andstandard
.- map[string]string
A mapping of tags to assign to the resource.
- endpoint String
The URL of the App Configuration.
- identity
Configuration
Store Identity Args 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.
- primary
Read List<ConfigurationKeys Store Primary Read Key Args> A
primary_read_key
block as defined below containing the primary read access key.- primary
Write List<ConfigurationKeys Store Primary Write Key Args> A
primary_write_key
block as defined below containing the primary write access key.- resource
Group StringName The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- secondary
Read List<ConfigurationKeys Store Secondary Read Key Args> A
secondary_read_key
block as defined below containing the secondary read access key.- secondary
Write List<ConfigurationKeys Store Secondary Write Key Args> A
secondary_write_key
block as defined below containing the secondary write access key.- sku String
The SKU name of the App Configuration. Possible values are
free
andstandard
.- Map<String,String>
A mapping of tags to assign to the resource.
- endpoint string
The URL of the App Configuration.
- identity
Configuration
Store Identity Args 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.
- primary
Read ConfigurationKeys Store Primary Read Key Args[] A
primary_read_key
block as defined below containing the primary read access key.- primary
Write ConfigurationKeys Store Primary Write Key Args[] A
primary_write_key
block as defined below containing the primary write access key.- resource
Group stringName The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- secondary
Read ConfigurationKeys Store Secondary Read Key Args[] A
secondary_read_key
block as defined below containing the secondary read access key.- secondary
Write ConfigurationKeys Store Secondary Write Key Args[] A
secondary_write_key
block as defined below containing the secondary write access key.- sku string
The SKU name of the App Configuration. Possible values are
free
andstandard
.- {[key: string]: string}
A mapping of tags to assign to the resource.
- endpoint str
The URL of the App Configuration.
- identity
Configuration
Store Identity Args 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_ Sequence[Configurationkeys Store Primary Read Key Args] A
primary_read_key
block as defined below containing the primary read access key.- primary_
write_ Sequence[Configurationkeys Store Primary Write Key Args] A
primary_write_key
block as defined below containing the primary write access key.- 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_key
block as defined below containing the secondary read access key.- secondary_
write_ Sequence[Configurationkeys Store Secondary Write Key Args] A
secondary_write_key
block as defined below containing the secondary write access key.- sku str
The SKU name of the App Configuration. Possible values are
free
andstandard
.- 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.
- primary
Read List<Property Map>Keys A
primary_read_key
block as defined below containing the primary read access key.- primary
Write List<Property Map>Keys A
primary_write_key
block as defined below containing the primary write access key.- resource
Group StringName The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created.
- secondary
Read List<Property Map>Keys A
secondary_read_key
block as defined below containing the secondary read access key.- secondary
Write List<Property Map>Keys A
secondary_write_key
block as defined below containing the secondary write access key.- sku String
The SKU name of the App Configuration. Possible values are
free
andstandard
.- Map<String>
A mapping of tags to assign to the resource.
Supporting Types
ConfigurationStoreIdentity
- Type string
Specifies the type of Managed Service Identity that should be configured on this App Configuration. Possible values are
SystemAssigned
,UserAssigned
,SystemAssigned, UserAssigned
(to enable both).- Identity
Ids List<string> A list of User Assigned Managed Identity IDs to be assigned to this App Configuration.
- Principal
Id string The Principal ID associated with this Managed Service Identity.
- Tenant
Id 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
,SystemAssigned, UserAssigned
(to enable both).- Identity
Ids []string A list of User Assigned Managed Identity IDs to be assigned to this App Configuration.
- Principal
Id string The Principal ID associated with this Managed Service Identity.
- Tenant
Id 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
,SystemAssigned, UserAssigned
(to enable both).- identity
Ids List<String> A list of User Assigned Managed Identity IDs to be assigned to this App Configuration.
- principal
Id String The Principal ID associated with this Managed Service Identity.
- tenant
Id 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
,SystemAssigned, UserAssigned
(to enable both).- identity
Ids string[] A list of User Assigned Managed Identity IDs to be assigned to this App Configuration.
- principal
Id string The Principal ID associated with this Managed Service Identity.
- tenant
Id 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
,SystemAssigned, UserAssigned
(to enable both).- identity_
ids Sequence[str] A list of User Assigned Managed Identity IDs to be assigned to this App Configuration.
- 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
,SystemAssigned, UserAssigned
(to enable both).- identity
Ids List<String> A list of User Assigned Managed Identity IDs to be assigned to this App Configuration.
- principal
Id String The Principal ID associated with this Managed Service Identity.
- tenant
Id String The Tenant ID associated with this Managed Service Identity.
ConfigurationStorePrimaryReadKey
- Connection
String 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 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 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 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.
- connection
String 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
- Connection
String 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 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 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 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.
- connection
String 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
- Connection
String 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 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 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 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.
- connection
String 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
- Connection
String 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 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 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 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.
- connection
String 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
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.