We recommend using Azure Native.
azure.appconfiguration.ConfigurationFeature
Explore with Pulumi AI
Manages an Azure App Configuration Feature.
Note: App Configuration Features are provisioned using a Data Plane API which requires the role
App Configuration Data Owner
on 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. This is similar to providing App Configuration Keys.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Location = "West Europe",
});
var appconf = new Azure.AppConfiguration.ConfigurationStore("appconf", new()
{
ResourceGroupName = example.Name,
Location = example.Location,
});
var current = Azure.Core.GetClientConfig.Invoke();
var appconfDataowner = new Azure.Authorization.Assignment("appconfDataowner", new()
{
Scope = appconf.Id,
RoleDefinitionName = "App Configuration Data Owner",
PrincipalId = current.Apply(getClientConfigResult => getClientConfigResult.ObjectId),
});
var test = new Azure.AppConfiguration.ConfigurationFeature("test", new()
{
ConfigurationStoreId = appconf.Id,
Description = "test description",
Label = "test-ackeylabel",
Enabled = true,
});
});
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appconfiguration"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/authorization"
"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
}
appconf, err := appconfiguration.NewConfigurationStore(ctx, "appconf", &appconfiguration.ConfigurationStoreArgs{
ResourceGroupName: example.Name,
Location: example.Location,
})
if err != nil {
return err
}
current, err := core.GetClientConfig(ctx, nil, nil)
if err != nil {
return err
}
_, err = authorization.NewAssignment(ctx, "appconfDataowner", &authorization.AssignmentArgs{
Scope: appconf.ID(),
RoleDefinitionName: pulumi.String("App Configuration Data Owner"),
PrincipalId: *pulumi.String(current.ObjectId),
})
if err != nil {
return err
}
_, err = appconfiguration.NewConfigurationFeature(ctx, "test", &appconfiguration.ConfigurationFeatureArgs{
ConfigurationStoreId: appconf.ID(),
Description: pulumi.String("test description"),
Label: pulumi.String("test-ackeylabel"),
Enabled: pulumi.Bool(true),
})
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 com.pulumi.azure.core.CoreFunctions;
import com.pulumi.azure.authorization.Assignment;
import com.pulumi.azure.authorization.AssignmentArgs;
import com.pulumi.azure.appconfiguration.ConfigurationFeature;
import com.pulumi.azure.appconfiguration.ConfigurationFeatureArgs;
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());
final var current = CoreFunctions.getClientConfig();
var appconfDataowner = new Assignment("appconfDataowner", AssignmentArgs.builder()
.scope(appconf.id())
.roleDefinitionName("App Configuration Data Owner")
.principalId(current.applyValue(getClientConfigResult -> getClientConfigResult.objectId()))
.build());
var test = new ConfigurationFeature("test", ConfigurationFeatureArgs.builder()
.configurationStoreId(appconf.id())
.description("test description")
.label("test-ackeylabel")
.enabled(true)
.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)
current = azure.core.get_client_config()
appconf_dataowner = azure.authorization.Assignment("appconfDataowner",
scope=appconf.id,
role_definition_name="App Configuration Data Owner",
principal_id=current.object_id)
test = azure.appconfiguration.ConfigurationFeature("test",
configuration_store_id=appconf.id,
description="test description",
label="test-ackeylabel",
enabled=True)
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,
});
const current = azure.core.getClientConfig({});
const appconfDataowner = new azure.authorization.Assignment("appconfDataowner", {
scope: appconf.id,
roleDefinitionName: "App Configuration Data Owner",
principalId: current.then(current => current.objectId),
});
const test = new azure.appconfiguration.ConfigurationFeature("test", {
configurationStoreId: appconf.id,
description: "test description",
label: "test-ackeylabel",
enabled: true,
});
resources:
example:
type: azure:core:ResourceGroup
properties:
location: West Europe
appconf:
type: azure:appconfiguration:ConfigurationStore
properties:
resourceGroupName: ${example.name}
location: ${example.location}
appconfDataowner:
type: azure:authorization:Assignment
properties:
scope: ${appconf.id}
roleDefinitionName: App Configuration Data Owner
principalId: ${current.objectId}
test:
type: azure:appconfiguration:ConfigurationFeature
properties:
configurationStoreId: ${appconf.id}
description: test description
label: test-ackeylabel
enabled: true
variables:
current:
fn::invoke:
Function: azure:core:getClientConfig
Arguments: {}
Create ConfigurationFeature Resource
new ConfigurationFeature(name: string, args: ConfigurationFeatureArgs, opts?: CustomResourceOptions);
@overload
def ConfigurationFeature(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration_store_id: Optional[str] = None,
description: Optional[str] = None,
enabled: Optional[bool] = None,
etag: Optional[str] = None,
key: Optional[str] = None,
label: Optional[str] = None,
locked: Optional[bool] = None,
name: Optional[str] = None,
percentage_filter_value: Optional[int] = None,
tags: Optional[Mapping[str, str]] = None,
targeting_filters: Optional[Sequence[ConfigurationFeatureTargetingFilterArgs]] = None,
timewindow_filters: Optional[Sequence[ConfigurationFeatureTimewindowFilterArgs]] = None)
@overload
def ConfigurationFeature(resource_name: str,
args: ConfigurationFeatureArgs,
opts: Optional[ResourceOptions] = None)
func NewConfigurationFeature(ctx *Context, name string, args ConfigurationFeatureArgs, opts ...ResourceOption) (*ConfigurationFeature, error)
public ConfigurationFeature(string name, ConfigurationFeatureArgs args, CustomResourceOptions? opts = null)
public ConfigurationFeature(String name, ConfigurationFeatureArgs args)
public ConfigurationFeature(String name, ConfigurationFeatureArgs args, CustomResourceOptions options)
type: azure:appconfiguration:ConfigurationFeature
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConfigurationFeatureArgs
- 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 ConfigurationFeatureArgs
- 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 ConfigurationFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConfigurationFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConfigurationFeatureArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ConfigurationFeature 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 ConfigurationFeature resource accepts the following input properties:
- Configuration
Store stringId Specifies the id of the App Configuration. Changing this forces a new resource to be created.
- Description string
The description of the App Configuration Feature.
- Enabled bool
The status of the App Configuration Feature. By default, this is set to false.
- Etag string
- Key string
The key of the App Configuration Feature. The value for
name
will be used if this is unspecified. Changing this forces a new resource to be created.- Label string
The label of the App Configuration Feature. Changing this forces a new resource to be created.
- Locked bool
Should this App Configuration Feature be Locked to prevent changes?
- Name string
The name of the App Configuration Feature. Changing this forces a new resource to be created.
- Percentage
Filter intValue A list of one or more numbers representing the value of the percentage required to enable this feature.
- Dictionary<string, string>
A mapping of tags to assign to the resource.
- Targeting
Filters List<ConfigurationFeature Targeting Filter Args> A
targeting_filter
block as defined below.- Timewindow
Filters List<ConfigurationFeature Timewindow Filter Args> A
timewindow_filter
block as defined below.
- Configuration
Store stringId Specifies the id of the App Configuration. Changing this forces a new resource to be created.
- Description string
The description of the App Configuration Feature.
- Enabled bool
The status of the App Configuration Feature. By default, this is set to false.
- Etag string
- Key string
The key of the App Configuration Feature. The value for
name
will be used if this is unspecified. Changing this forces a new resource to be created.- Label string
The label of the App Configuration Feature. Changing this forces a new resource to be created.
- Locked bool
Should this App Configuration Feature be Locked to prevent changes?
- Name string
The name of the App Configuration Feature. Changing this forces a new resource to be created.
- Percentage
Filter intValue A list of one or more numbers representing the value of the percentage required to enable this feature.
- map[string]string
A mapping of tags to assign to the resource.
- Targeting
Filters []ConfigurationFeature Targeting Filter Args A
targeting_filter
block as defined below.- Timewindow
Filters []ConfigurationFeature Timewindow Filter Args A
timewindow_filter
block as defined below.
- configuration
Store StringId Specifies the id of the App Configuration. Changing this forces a new resource to be created.
- description String
The description of the App Configuration Feature.
- enabled Boolean
The status of the App Configuration Feature. By default, this is set to false.
- etag String
- key String
The key of the App Configuration Feature. The value for
name
will be used if this is unspecified. Changing this forces a new resource to be created.- label String
The label of the App Configuration Feature. Changing this forces a new resource to be created.
- locked Boolean
Should this App Configuration Feature be Locked to prevent changes?
- name String
The name of the App Configuration Feature. Changing this forces a new resource to be created.
- percentage
Filter IntegerValue A list of one or more numbers representing the value of the percentage required to enable this feature.
- Map<String,String>
A mapping of tags to assign to the resource.
- targeting
Filters List<ConfigurationFeature Targeting Filter Args> A
targeting_filter
block as defined below.- timewindow
Filters List<ConfigurationFeature Timewindow Filter Args> A
timewindow_filter
block as defined below.
- configuration
Store stringId Specifies the id of the App Configuration. Changing this forces a new resource to be created.
- description string
The description of the App Configuration Feature.
- enabled boolean
The status of the App Configuration Feature. By default, this is set to false.
- etag string
- key string
The key of the App Configuration Feature. The value for
name
will be used if this is unspecified. Changing this forces a new resource to be created.- label string
The label of the App Configuration Feature. Changing this forces a new resource to be created.
- locked boolean
Should this App Configuration Feature be Locked to prevent changes?
- name string
The name of the App Configuration Feature. Changing this forces a new resource to be created.
- percentage
Filter numberValue A list of one or more numbers representing the value of the percentage required to enable this feature.
- {[key: string]: string}
A mapping of tags to assign to the resource.
- targeting
Filters ConfigurationFeature Targeting Filter Args[] A
targeting_filter
block as defined below.- timewindow
Filters ConfigurationFeature Timewindow Filter Args[] A
timewindow_filter
block as defined below.
- configuration_
store_ strid Specifies the id of the App Configuration. Changing this forces a new resource to be created.
- description str
The description of the App Configuration Feature.
- enabled bool
The status of the App Configuration Feature. By default, this is set to false.
- etag str
- key str
The key of the App Configuration Feature. The value for
name
will be used if this is unspecified. Changing this forces a new resource to be created.- label str
The label of the App Configuration Feature. Changing this forces a new resource to be created.
- locked bool
Should this App Configuration Feature be Locked to prevent changes?
- name str
The name of the App Configuration Feature. Changing this forces a new resource to be created.
- percentage_
filter_ intvalue A list of one or more numbers representing the value of the percentage required to enable this feature.
- Mapping[str, str]
A mapping of tags to assign to the resource.
- targeting_
filters Sequence[ConfigurationFeature Targeting Filter Args] A
targeting_filter
block as defined below.- timewindow_
filters Sequence[ConfigurationFeature Timewindow Filter Args] A
timewindow_filter
block as defined below.
- configuration
Store StringId Specifies the id of the App Configuration. Changing this forces a new resource to be created.
- description String
The description of the App Configuration Feature.
- enabled Boolean
The status of the App Configuration Feature. By default, this is set to false.
- etag String
- key String
The key of the App Configuration Feature. The value for
name
will be used if this is unspecified. Changing this forces a new resource to be created.- label String
The label of the App Configuration Feature. Changing this forces a new resource to be created.
- locked Boolean
Should this App Configuration Feature be Locked to prevent changes?
- name String
The name of the App Configuration Feature. Changing this forces a new resource to be created.
- percentage
Filter NumberValue A list of one or more numbers representing the value of the percentage required to enable this feature.
- Map<String>
A mapping of tags to assign to the resource.
- targeting
Filters List<Property Map> A
targeting_filter
block as defined below.- timewindow
Filters List<Property Map> A
timewindow_filter
block as defined below.
Outputs
All input properties are implicitly available as output properties. Additionally, the ConfigurationFeature resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Id string
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
- id string
The provider-assigned unique ID for this managed resource.
- id str
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing ConfigurationFeature Resource
Get an existing ConfigurationFeature 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?: ConfigurationFeatureState, opts?: CustomResourceOptions): ConfigurationFeature
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration_store_id: Optional[str] = None,
description: Optional[str] = None,
enabled: Optional[bool] = None,
etag: Optional[str] = None,
key: Optional[str] = None,
label: Optional[str] = None,
locked: Optional[bool] = None,
name: Optional[str] = None,
percentage_filter_value: Optional[int] = None,
tags: Optional[Mapping[str, str]] = None,
targeting_filters: Optional[Sequence[ConfigurationFeatureTargetingFilterArgs]] = None,
timewindow_filters: Optional[Sequence[ConfigurationFeatureTimewindowFilterArgs]] = None) -> ConfigurationFeature
func GetConfigurationFeature(ctx *Context, name string, id IDInput, state *ConfigurationFeatureState, opts ...ResourceOption) (*ConfigurationFeature, error)
public static ConfigurationFeature Get(string name, Input<string> id, ConfigurationFeatureState? state, CustomResourceOptions? opts = null)
public static ConfigurationFeature get(String name, Output<String> id, ConfigurationFeatureState 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.
- Configuration
Store stringId Specifies the id of the App Configuration. Changing this forces a new resource to be created.
- Description string
The description of the App Configuration Feature.
- Enabled bool
The status of the App Configuration Feature. By default, this is set to false.
- Etag string
- Key string
The key of the App Configuration Feature. The value for
name
will be used if this is unspecified. Changing this forces a new resource to be created.- Label string
The label of the App Configuration Feature. Changing this forces a new resource to be created.
- Locked bool
Should this App Configuration Feature be Locked to prevent changes?
- Name string
The name of the App Configuration Feature. Changing this forces a new resource to be created.
- Percentage
Filter intValue A list of one or more numbers representing the value of the percentage required to enable this feature.
- Dictionary<string, string>
A mapping of tags to assign to the resource.
- Targeting
Filters List<ConfigurationFeature Targeting Filter Args> A
targeting_filter
block as defined below.- Timewindow
Filters List<ConfigurationFeature Timewindow Filter Args> A
timewindow_filter
block as defined below.
- Configuration
Store stringId Specifies the id of the App Configuration. Changing this forces a new resource to be created.
- Description string
The description of the App Configuration Feature.
- Enabled bool
The status of the App Configuration Feature. By default, this is set to false.
- Etag string
- Key string
The key of the App Configuration Feature. The value for
name
will be used if this is unspecified. Changing this forces a new resource to be created.- Label string
The label of the App Configuration Feature. Changing this forces a new resource to be created.
- Locked bool
Should this App Configuration Feature be Locked to prevent changes?
- Name string
The name of the App Configuration Feature. Changing this forces a new resource to be created.
- Percentage
Filter intValue A list of one or more numbers representing the value of the percentage required to enable this feature.
- map[string]string
A mapping of tags to assign to the resource.
- Targeting
Filters []ConfigurationFeature Targeting Filter Args A
targeting_filter
block as defined below.- Timewindow
Filters []ConfigurationFeature Timewindow Filter Args A
timewindow_filter
block as defined below.
- configuration
Store StringId Specifies the id of the App Configuration. Changing this forces a new resource to be created.
- description String
The description of the App Configuration Feature.
- enabled Boolean
The status of the App Configuration Feature. By default, this is set to false.
- etag String
- key String
The key of the App Configuration Feature. The value for
name
will be used if this is unspecified. Changing this forces a new resource to be created.- label String
The label of the App Configuration Feature. Changing this forces a new resource to be created.
- locked Boolean
Should this App Configuration Feature be Locked to prevent changes?
- name String
The name of the App Configuration Feature. Changing this forces a new resource to be created.
- percentage
Filter IntegerValue A list of one or more numbers representing the value of the percentage required to enable this feature.
- Map<String,String>
A mapping of tags to assign to the resource.
- targeting
Filters List<ConfigurationFeature Targeting Filter Args> A
targeting_filter
block as defined below.- timewindow
Filters List<ConfigurationFeature Timewindow Filter Args> A
timewindow_filter
block as defined below.
- configuration
Store stringId Specifies the id of the App Configuration. Changing this forces a new resource to be created.
- description string
The description of the App Configuration Feature.
- enabled boolean
The status of the App Configuration Feature. By default, this is set to false.
- etag string
- key string
The key of the App Configuration Feature. The value for
name
will be used if this is unspecified. Changing this forces a new resource to be created.- label string
The label of the App Configuration Feature. Changing this forces a new resource to be created.
- locked boolean
Should this App Configuration Feature be Locked to prevent changes?
- name string
The name of the App Configuration Feature. Changing this forces a new resource to be created.
- percentage
Filter numberValue A list of one or more numbers representing the value of the percentage required to enable this feature.
- {[key: string]: string}
A mapping of tags to assign to the resource.
- targeting
Filters ConfigurationFeature Targeting Filter Args[] A
targeting_filter
block as defined below.- timewindow
Filters ConfigurationFeature Timewindow Filter Args[] A
timewindow_filter
block as defined below.
- configuration_
store_ strid Specifies the id of the App Configuration. Changing this forces a new resource to be created.
- description str
The description of the App Configuration Feature.
- enabled bool
The status of the App Configuration Feature. By default, this is set to false.
- etag str
- key str
The key of the App Configuration Feature. The value for
name
will be used if this is unspecified. Changing this forces a new resource to be created.- label str
The label of the App Configuration Feature. Changing this forces a new resource to be created.
- locked bool
Should this App Configuration Feature be Locked to prevent changes?
- name str
The name of the App Configuration Feature. Changing this forces a new resource to be created.
- percentage_
filter_ intvalue A list of one or more numbers representing the value of the percentage required to enable this feature.
- Mapping[str, str]
A mapping of tags to assign to the resource.
- targeting_
filters Sequence[ConfigurationFeature Targeting Filter Args] A
targeting_filter
block as defined below.- timewindow_
filters Sequence[ConfigurationFeature Timewindow Filter Args] A
timewindow_filter
block as defined below.
- configuration
Store StringId Specifies the id of the App Configuration. Changing this forces a new resource to be created.
- description String
The description of the App Configuration Feature.
- enabled Boolean
The status of the App Configuration Feature. By default, this is set to false.
- etag String
- key String
The key of the App Configuration Feature. The value for
name
will be used if this is unspecified. Changing this forces a new resource to be created.- label String
The label of the App Configuration Feature. Changing this forces a new resource to be created.
- locked Boolean
Should this App Configuration Feature be Locked to prevent changes?
- name String
The name of the App Configuration Feature. Changing this forces a new resource to be created.
- percentage
Filter NumberValue A list of one or more numbers representing the value of the percentage required to enable this feature.
- Map<String>
A mapping of tags to assign to the resource.
- targeting
Filters List<Property Map> A
targeting_filter
block as defined below.- timewindow
Filters List<Property Map> A
timewindow_filter
block as defined below.
Supporting Types
ConfigurationFeatureTargetingFilter
- Default
Rollout intPercentage A number representing the percentage of the entire user base.
- Groups
List<Configuration
Feature Targeting Filter Group> One or more blocks of type
groups
as defined below.- Users List<string>
A list of users to target for this feature.
- Default
Rollout intPercentage A number representing the percentage of the entire user base.
- Groups
[]Configuration
Feature Targeting Filter Group One or more blocks of type
groups
as defined below.- Users []string
A list of users to target for this feature.
- default
Rollout IntegerPercentage A number representing the percentage of the entire user base.
- groups
List<Configuration
Feature Targeting Filter Group> One or more blocks of type
groups
as defined below.- users List<String>
A list of users to target for this feature.
- default
Rollout numberPercentage A number representing the percentage of the entire user base.
- groups
Configuration
Feature Targeting Filter Group[] One or more blocks of type
groups
as defined below.- users string[]
A list of users to target for this feature.
- default_
rollout_ intpercentage A number representing the percentage of the entire user base.
- groups
Sequence[Configuration
Feature Targeting Filter Group] One or more blocks of type
groups
as defined below.- users Sequence[str]
A list of users to target for this feature.
- default
Rollout NumberPercentage A number representing the percentage of the entire user base.
- groups List<Property Map>
One or more blocks of type
groups
as defined below.- users List<String>
A list of users to target for this feature.
ConfigurationFeatureTargetingFilterGroup
- Name string
The name of the group.
- Rollout
Percentage int Rollout percentage of the group.
- Name string
The name of the group.
- Rollout
Percentage int Rollout percentage of the group.
- name String
The name of the group.
- rollout
Percentage Integer Rollout percentage of the group.
- name string
The name of the group.
- rollout
Percentage number Rollout percentage of the group.
- name str
The name of the group.
- rollout_
percentage int Rollout percentage of the group.
- name String
The name of the group.
- rollout
Percentage Number Rollout percentage of the group.
ConfigurationFeatureTimewindowFilter
Import
App Configuration Features can be imported using the resource id
, e.g.
$ pulumi import azure:appconfiguration/configurationFeature:ConfigurationFeature test https://appconfname1.azconfig.io/kv/.appconfig.featureflag%2FkeyName?label=labelName
If you wish to import with an empty label then simply leave the label’s name blank
$ pulumi import azure:appconfiguration/configurationFeature:ConfigurationFeature test https://appconfname1.azconfig.io/kv/.appconfig.featureflag%2FkeyName?label=
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.