We recommend using Azure Native.
azure.appconfiguration.getConfigurationKeys
Explore with Pulumi AI
Use this data source to access information about existing Azure App Configuration Keys.
Note: App Configuration Keys are provisioned using a Data Plane API which requires the role
App Configuration Data Owneron either the App Configuration or a parent scope (such as the Resource Group/Subscription). More information can be found in the Azure Documentation for App Configuration.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const test = azure.appconfiguration.getConfigurationKeys({
    configurationStoreId: appconf.id,
});
export const value = test.then(test => test.items);
import pulumi
import pulumi_azure as azure
test = azure.appconfiguration.get_configuration_keys(configuration_store_id=appconf["id"])
pulumi.export("value", test.items)
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appconfiguration"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		test, err := appconfiguration.GetConfigurationKeys(ctx, &appconfiguration.GetConfigurationKeysArgs{
			ConfigurationStoreId: appconf.Id,
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("value", test.Items)
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() => 
{
    var test = Azure.AppConfiguration.GetConfigurationKeys.Invoke(new()
    {
        ConfigurationStoreId = appconf.Id,
    });
    return new Dictionary<string, object?>
    {
        ["value"] = test.Apply(getConfigurationKeysResult => getConfigurationKeysResult.Items),
    };
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.appconfiguration.AppconfigurationFunctions;
import com.pulumi.azure.appconfiguration.inputs.GetConfigurationKeysArgs;
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) {
        final var test = AppconfigurationFunctions.getConfigurationKeys(GetConfigurationKeysArgs.builder()
            .configurationStoreId(appconf.id())
            .build());
        ctx.export("value", test.applyValue(getConfigurationKeysResult -> getConfigurationKeysResult.items()));
    }
}
variables:
  test:
    fn::invoke:
      Function: azure:appconfiguration:getConfigurationKeys
      Arguments:
        configurationStoreId: ${appconf.id}
outputs:
  value: ${test.items}
Using getConfigurationKeys
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getConfigurationKeys(args: GetConfigurationKeysArgs, opts?: InvokeOptions): Promise<GetConfigurationKeysResult>
function getConfigurationKeysOutput(args: GetConfigurationKeysOutputArgs, opts?: InvokeOptions): Output<GetConfigurationKeysResult>def get_configuration_keys(configuration_store_id: Optional[str] = None,
                           key: Optional[str] = None,
                           label: Optional[str] = None,
                           opts: Optional[InvokeOptions] = None) -> GetConfigurationKeysResult
def get_configuration_keys_output(configuration_store_id: Optional[pulumi.Input[str]] = None,
                           key: Optional[pulumi.Input[str]] = None,
                           label: Optional[pulumi.Input[str]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetConfigurationKeysResult]func GetConfigurationKeys(ctx *Context, args *GetConfigurationKeysArgs, opts ...InvokeOption) (*GetConfigurationKeysResult, error)
func GetConfigurationKeysOutput(ctx *Context, args *GetConfigurationKeysOutputArgs, opts ...InvokeOption) GetConfigurationKeysResultOutput> Note: This function is named GetConfigurationKeys in the Go SDK.
public static class GetConfigurationKeys 
{
    public static Task<GetConfigurationKeysResult> InvokeAsync(GetConfigurationKeysArgs args, InvokeOptions? opts = null)
    public static Output<GetConfigurationKeysResult> Invoke(GetConfigurationKeysInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetConfigurationKeysResult> getConfigurationKeys(GetConfigurationKeysArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: azure:appconfiguration/getConfigurationKeys:getConfigurationKeys
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Configuration
Store stringId  - Specifies the id of the App Configuration.
 - Key string
 - The name of the App Configuration Keys to look up.
 - Label string
 - The label of the App Configuration Keys tp look up.
 
- Configuration
Store stringId  - Specifies the id of the App Configuration.
 - Key string
 - The name of the App Configuration Keys to look up.
 - Label string
 - The label of the App Configuration Keys tp look up.
 
- configuration
Store StringId  - Specifies the id of the App Configuration.
 - key String
 - The name of the App Configuration Keys to look up.
 - label String
 - The label of the App Configuration Keys tp look up.
 
- configuration
Store stringId  - Specifies the id of the App Configuration.
 - key string
 - The name of the App Configuration Keys to look up.
 - label string
 - The label of the App Configuration Keys tp look up.
 
- configuration_
store_ strid  - Specifies the id of the App Configuration.
 - key str
 - The name of the App Configuration Keys to look up.
 - label str
 - The label of the App Configuration Keys tp look up.
 
- configuration
Store StringId  - Specifies the id of the App Configuration.
 - key String
 - The name of the App Configuration Keys to look up.
 - label String
 - The label of the App Configuration Keys tp look up.
 
getConfigurationKeys Result
The following output properties are available:
- Configuration
Store stringId  - Id string
 - The provider-assigned unique ID for this managed resource.
 - Items
List<Get
Configuration Keys Item>  - A list of 
itemsblocks as defined below. - Key string
 - The name of the App Configuration Key.
 - Label string
 - The label of the App Configuration Key.
 
- Configuration
Store stringId  - Id string
 - The provider-assigned unique ID for this managed resource.
 - Items
[]Get
Configuration Keys Item  - A list of 
itemsblocks as defined below. - Key string
 - The name of the App Configuration Key.
 - Label string
 - The label of the App Configuration Key.
 
- configuration
Store StringId  - id String
 - The provider-assigned unique ID for this managed resource.
 - items
List<Get
Configuration Keys Item>  - A list of 
itemsblocks as defined below. - key String
 - The name of the App Configuration Key.
 - label String
 - The label of the App Configuration Key.
 
- configuration
Store stringId  - id string
 - The provider-assigned unique ID for this managed resource.
 - items
Get
Configuration Keys Item[]  - A list of 
itemsblocks as defined below. - key string
 - The name of the App Configuration Key.
 - label string
 - The label of the App Configuration Key.
 
- configuration_
store_ strid  - id str
 - The provider-assigned unique ID for this managed resource.
 - items
Sequence[Get
Configuration Keys Item]  - A list of 
itemsblocks as defined below. - key str
 - The name of the App Configuration Key.
 - label str
 - The label of the App Configuration Key.
 
- configuration
Store StringId  - id String
 - The provider-assigned unique ID for this managed resource.
 - items List<Property Map>
 - A list of 
itemsblocks as defined below. - key String
 - The name of the App Configuration Key.
 - label String
 - The label of the App Configuration Key.
 
Supporting Types
GetConfigurationKeysItem   
- Content
Type string - The content type of the App Configuration Key.
 - Etag string
 - The ETag of the key.
 - Key string
 - The name of the App Configuration Keys to look up.
 - Label string
 - The label of the App Configuration Keys tp look up.
 - Locked bool
 - Is this App Configuration Key be Locked to prevent changes.
 - Dictionary<string, string>
 - A mapping of tags assigned to the resource.
 - Type string
 - The type of the App Configuration Key. It can either be 
kv(simple key/value) orvault(where the value is a reference to a Key Vault Secret. - Value string
 - The value of the App Configuration Key.
 - Vault
Key stringReference  - The ID of the vault secret this App Configuration Key refers to, when 
typeisvault. 
- Content
Type string - The content type of the App Configuration Key.
 - Etag string
 - The ETag of the key.
 - Key string
 - The name of the App Configuration Keys to look up.
 - Label string
 - The label of the App Configuration Keys tp look up.
 - Locked bool
 - Is this App Configuration Key be Locked to prevent changes.
 - map[string]string
 - A mapping of tags assigned to the resource.
 - Type string
 - The type of the App Configuration Key. It can either be 
kv(simple key/value) orvault(where the value is a reference to a Key Vault Secret. - Value string
 - The value of the App Configuration Key.
 - Vault
Key stringReference  - The ID of the vault secret this App Configuration Key refers to, when 
typeisvault. 
- content
Type String - The content type of the App Configuration Key.
 - etag String
 - The ETag of the key.
 - key String
 - The name of the App Configuration Keys to look up.
 - label String
 - The label of the App Configuration Keys tp look up.
 - locked Boolean
 - Is this App Configuration Key be Locked to prevent changes.
 - Map<String,String>
 - A mapping of tags assigned to the resource.
 - type String
 - The type of the App Configuration Key. It can either be 
kv(simple key/value) orvault(where the value is a reference to a Key Vault Secret. - value String
 - The value of the App Configuration Key.
 - vault
Key StringReference  - The ID of the vault secret this App Configuration Key refers to, when 
typeisvault. 
- content
Type string - The content type of the App Configuration Key.
 - etag string
 - The ETag of the key.
 - key string
 - The name of the App Configuration Keys to look up.
 - label string
 - The label of the App Configuration Keys tp look up.
 - locked boolean
 - Is this App Configuration Key be Locked to prevent changes.
 - {[key: string]: string}
 - A mapping of tags assigned to the resource.
 - type string
 - The type of the App Configuration Key. It can either be 
kv(simple key/value) orvault(where the value is a reference to a Key Vault Secret. - value string
 - The value of the App Configuration Key.
 - vault
Key stringReference  - The ID of the vault secret this App Configuration Key refers to, when 
typeisvault. 
- content_
type str - The content type of the App Configuration Key.
 - etag str
 - The ETag of the key.
 - key str
 - The name of the App Configuration Keys to look up.
 - label str
 - The label of the App Configuration Keys tp look up.
 - locked bool
 - Is this App Configuration Key be Locked to prevent changes.
 - Mapping[str, str]
 - A mapping of tags assigned to the resource.
 - type str
 - The type of the App Configuration Key. It can either be 
kv(simple key/value) orvault(where the value is a reference to a Key Vault Secret. - value str
 - The value of the App Configuration Key.
 - vault_
key_ strreference  - The ID of the vault secret this App Configuration Key refers to, when 
typeisvault. 
- content
Type String - The content type of the App Configuration Key.
 - etag String
 - The ETag of the key.
 - key String
 - The name of the App Configuration Keys to look up.
 - label String
 - The label of the App Configuration Keys tp look up.
 - locked Boolean
 - Is this App Configuration Key be Locked to prevent changes.
 - Map<String>
 - A mapping of tags assigned to the resource.
 - type String
 - The type of the App Configuration Key. It can either be 
kv(simple key/value) orvault(where the value is a reference to a Key Vault Secret. - value String
 - The value of the App Configuration Key.
 - vault
Key StringReference  - The ID of the vault secret this App Configuration Key refers to, when 
typeisvault. 
Package Details
- Repository
 - Azure Classic pulumi/pulumi-azure
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
azurermTerraform Provider.