ConfigurationFeatureArgs

data class ConfigurationFeatureArgs(val configurationStoreId: Output<String>? = null, val description: Output<String>? = null, val enabled: Output<Boolean>? = null, val etag: Output<String>? = null, val key: Output<String>? = null, val label: Output<String>? = null, val locked: Output<Boolean>? = null, val name: Output<String>? = null, val percentageFilterValue: Output<Double>? = null, val tags: Output<Map<String, String>>? = null, val targetingFilters: Output<List<ConfigurationFeatureTargetingFilterArgs>>? = null, val timewindowFilters: Output<List<ConfigurationFeatureTimewindowFilterArgs>>? = null) : ConvertibleToJava<ConfigurationFeatureArgs>

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

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "example-resources",
location: "West Europe",
});
const appconf = new azure.appconfiguration.ConfigurationStore("appconf", {
name: "appConf1",
resourceGroupName: example.name,
location: example.location,
});
const current = azure.core.getClientConfig({});
const appconfDataowner = new azure.authorization.Assignment("appconf_dataowner", {
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",
name: "test-ackey",
label: "test-ackeylabel",
enabled: true,
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
appconf = azure.appconfiguration.ConfigurationStore("appconf",
name="appConf1",
resource_group_name=example.name,
location=example.location)
current = azure.core.get_client_config()
appconf_dataowner = azure.authorization.Assignment("appconf_dataowner",
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",
name="test-ackey",
label="test-ackeylabel",
enabled=True)
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()
{
Name = "example-resources",
Location = "West Europe",
});
var appconf = new Azure.AppConfiguration.ConfigurationStore("appconf", new()
{
Name = "appConf1",
ResourceGroupName = example.Name,
Location = example.Location,
});
var current = Azure.Core.GetClientConfig.Invoke();
var appconfDataowner = new Azure.Authorization.Assignment("appconf_dataowner", 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",
Name = "test-ackey",
Label = "test-ackeylabel",
Enabled = true,
});
});
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/appconfiguration"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/authorization"
"github.com/pulumi/pulumi-azure/sdk/v6/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{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
appconf, err := appconfiguration.NewConfigurationStore(ctx, "appconf", &appconfiguration.ConfigurationStoreArgs{
Name: pulumi.String("appConf1"),
ResourceGroupName: example.Name,
Location: example.Location,
})
if err != nil {
return err
}
current, err := core.GetClientConfig(ctx, map[string]interface{}{}, nil)
if err != nil {
return err
}
_, err = authorization.NewAssignment(ctx, "appconf_dataowner", &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"),
Name: pulumi.String("test-ackey"),
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()
.name("example-resources")
.location("West Europe")
.build());
var appconf = new ConfigurationStore("appconf", ConfigurationStoreArgs.builder()
.name("appConf1")
.resourceGroupName(example.name())
.location(example.location())
.build());
final var current = CoreFunctions.getClientConfig(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference);
var appconfDataowner = new Assignment("appconfDataowner", AssignmentArgs.builder()
.scope(appconf.id())
.roleDefinitionName("App Configuration Data Owner")
.principalId(current.objectId())
.build());
var test = new ConfigurationFeature("test", ConfigurationFeatureArgs.builder()
.configurationStoreId(appconf.id())
.description("test description")
.name("test-ackey")
.label("test-ackeylabel")
.enabled(true)
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
appconf:
type: azure:appconfiguration:ConfigurationStore
properties:
name: appConf1
resourceGroupName: ${example.name}
location: ${example.location}
appconfDataowner:
type: azure:authorization:Assignment
name: appconf_dataowner
properties:
scope: ${appconf.id}
roleDefinitionName: App Configuration Data Owner
principalId: ${current.objectId}
test:
type: azure:appconfiguration:ConfigurationFeature
properties:
configurationStoreId: ${appconf.id}
description: test description
name: test-ackey
label: test-ackeylabel
enabled: true
variables:
current:
fn::invoke:
function: azure:core:getClientConfig
arguments: {}

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=

Constructors

Link copied to clipboard
constructor(configurationStoreId: Output<String>? = null, description: Output<String>? = null, enabled: Output<Boolean>? = null, etag: Output<String>? = null, key: Output<String>? = null, label: Output<String>? = null, locked: Output<Boolean>? = null, name: Output<String>? = null, percentageFilterValue: Output<Double>? = null, tags: Output<Map<String, String>>? = null, targetingFilters: Output<List<ConfigurationFeatureTargetingFilterArgs>>? = null, timewindowFilters: Output<List<ConfigurationFeatureTimewindowFilterArgs>>? = null)

Properties

Link copied to clipboard
val configurationStoreId: Output<String>? = null

Specifies the id of the App Configuration. Changing this forces a new resource to be created.

Link copied to clipboard
val description: Output<String>? = null

The description of the App Configuration Feature.

Link copied to clipboard
val enabled: Output<Boolean>? = null

The status of the App Configuration Feature. By default, this is set to false.

Link copied to clipboard
val etag: Output<String>? = null
Link copied to clipboard
val key: Output<String>? = null

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.

Link copied to clipboard
val label: Output<String>? = null

The label of the App Configuration Feature. Changing this forces a new resource to be created.

Link copied to clipboard
val locked: Output<Boolean>? = null

Should this App Configuration Feature be Locked to prevent changes?

Link copied to clipboard
val name: Output<String>? = null

The name of the App Configuration Feature. Changing this forces a new resource to be created.

Link copied to clipboard
val percentageFilterValue: Output<Double>? = null

A number representing the value of the percentage required to enable this feature.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

A mapping of tags to assign to the resource.

Link copied to clipboard

A targeting_filter block as defined below.

Link copied to clipboard

A timewindow_filter block as defined below.

Functions

Link copied to clipboard
open override fun toJava(): ConfigurationFeatureArgs