GradientEdge CDK Utils
    Preparing search index...

    Interface AppConfigurationProps

    Properties for creating an Azure App Configuration store

    interface AppConfigurationProps {
        configStoreName?: Input<string | undefined>;
        createMode?: Input<CreateMode | undefined>;
        dataPlaneProxy?: Input<DataPlaneProxyPropertiesArgs | undefined>;
        disableLocalAuth?: Input<boolean | undefined>;
        enablePurgeProtection?: Input<boolean | undefined>;
        encryption?: Input<EncryptionPropertiesArgs | undefined>;
        identity?: Input<ResourceIdentityArgs | undefined>;
        location?: Input<string | undefined>;
        publicNetworkAccess?: Input<string | undefined>;
        resourceGroupName: Input<string>;
        sku: Input<SkuArgs>;
        softDeleteRetentionInDays?: Input<number | undefined>;
        tags?: Input<{ [key: string]: Input<string> } | undefined>;
    }

    Hierarchy

    • ConfigurationStoreArgs
      • AppConfigurationProps
    Index
    configStoreName?: Input<string | undefined>

    The name of the configuration store.

    createMode?: Input<CreateMode | undefined>

    Indicates whether the configuration store need to be recovered.

    dataPlaneProxy?: Input<DataPlaneProxyPropertiesArgs | undefined>

    Property specifying the configuration of data plane proxy for Azure Resource Manager (ARM).

    disableLocalAuth?: Input<boolean | undefined>

    Disables all authentication methods other than AAD authentication.

    enablePurgeProtection?: Input<boolean | undefined>

    Property specifying whether protection against purge is enabled for this configuration store.

    encryption?: Input<EncryptionPropertiesArgs | undefined>

    The encryption settings of the configuration store.

    identity?: Input<ResourceIdentityArgs | undefined>

    The managed identity information, if configured.

    location?: Input<string | undefined>

    The geo-location where the resource lives

    publicNetworkAccess?: Input<string | undefined>

    Control permission for data plane traffic coming from public networks while private endpoint is enabled.

    resourceGroupName: Input<string>

    The name of the resource group to which the container registry belongs.

    sku: Input<SkuArgs>

    The sku of the configuration store.

    softDeleteRetentionInDays?: Input<number | undefined>

    The amount of time in days that the configuration store will be retained when it is soft deleted.

    tags?: Input<{ [key: string]: Input<string> } | undefined>

    Resource tags.