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

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();
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")
.name("test-ackey")
.label("test-ackeylabel")
.enabled(true)
.build());
}
}

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
fun ConfigurationFeatureArgs(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)

Functions

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

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.