azure-native.hybridnetwork.ConfigurationGroupValue
Explore with Pulumi AI
Hybrid configuration group value resource. Azure REST API version: 2023-09-01.
Other available API versions: 2024-04-15.
Example Usage
Create or update configuration group value
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var configurationGroupValue = new AzureNative.HybridNetwork.ConfigurationGroupValue("configurationGroupValue", new()
{
ConfigurationGroupValueName = "testConfigurationGroupValue",
Location = "eastus",
Properties = new AzureNative.HybridNetwork.Inputs.ConfigurationValueWithoutSecretsArgs
{
ConfigurationGroupSchemaResourceReference = new AzureNative.HybridNetwork.Inputs.OpenDeploymentResourceReferenceArgs
{
Id = "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
IdType = "Open",
},
ConfigurationType = "Open",
ConfigurationValue = "{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}",
},
ResourceGroupName = "rg1",
});
});
package main
import (
hybridnetwork "github.com/pulumi/pulumi-azure-native-sdk/hybridnetwork/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := hybridnetwork.NewConfigurationGroupValue(ctx, "configurationGroupValue", &hybridnetwork.ConfigurationGroupValueArgs{
ConfigurationGroupValueName: pulumi.String("testConfigurationGroupValue"),
Location: pulumi.String("eastus"),
Properties: &hybridnetwork.ConfigurationValueWithoutSecretsArgs{
ConfigurationGroupSchemaResourceReference: hybridnetwork.OpenDeploymentResourceReference{
Id: "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
IdType: "Open",
},
ConfigurationType: pulumi.String("Open"),
ConfigurationValue: pulumi.String("{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}"),
},
ResourceGroupName: pulumi.String("rg1"),
})
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.azurenative.hybridnetwork.ConfigurationGroupValue;
import com.pulumi.azurenative.hybridnetwork.ConfigurationGroupValueArgs;
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 configurationGroupValue = new ConfigurationGroupValue("configurationGroupValue", ConfigurationGroupValueArgs.builder()
.configurationGroupValueName("testConfigurationGroupValue")
.location("eastus")
.properties(ConfigurationValueWithSecretsArgs.builder()
.configurationGroupSchemaResourceReference(OpenDeploymentResourceReferenceArgs.builder()
.id("/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName")
.idType("Open")
.build())
.configurationType("Open")
.configurationValue("{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}")
.build())
.resourceGroupName("rg1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
configuration_group_value = azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValue",
configuration_group_value_name="testConfigurationGroupValue",
location="eastus",
properties={
"configuration_group_schema_resource_reference": {
"id": "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
"id_type": "Open",
},
"configuration_type": "Open",
"configuration_value": "{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}",
},
resource_group_name="rg1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const configurationGroupValue = new azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValue", {
configurationGroupValueName: "testConfigurationGroupValue",
location: "eastus",
properties: {
configurationGroupSchemaResourceReference: {
id: "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
idType: "Open",
},
configurationType: "Open",
configurationValue: "{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}",
},
resourceGroupName: "rg1",
});
resources:
configurationGroupValue:
type: azure-native:hybridnetwork:ConfigurationGroupValue
properties:
configurationGroupValueName: testConfigurationGroupValue
location: eastus
properties:
configurationGroupSchemaResourceReference:
id: /subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName
idType: Open
configurationType: Open
configurationValue: '{"interconnect-groups":{"stripe-one":{"name":"Stripe one","international-interconnects":["france","germany"],"domestic-interconnects":["birmingham","edinburgh"]},"stripe-two":{"name":"Stripe two","international-interconnects":["germany","italy"],"domestic-interconnects":["edinburgh","london"]}},"interconnect-group-assignments":{"ssc-one":{"ssc":"SSC 1","interconnects":"stripe-one"},"ssc-two":{"ssc":"SSC 2","interconnects":"stripe-two"}}}'
resourceGroupName: rg1
Create or update configuration group value with secrets
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var configurationGroupValue = new AzureNative.HybridNetwork.ConfigurationGroupValue("configurationGroupValue", new()
{
ConfigurationGroupValueName = "testConfigurationGroupValue",
Location = "eastus",
Properties = new AzureNative.HybridNetwork.Inputs.ConfigurationValueWithSecretsArgs
{
ConfigurationGroupSchemaResourceReference = new AzureNative.HybridNetwork.Inputs.OpenDeploymentResourceReferenceArgs
{
Id = "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
IdType = "Open",
},
ConfigurationType = "Secret",
SecretConfigurationValue = "{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}",
},
ResourceGroupName = "rg1",
});
});
package main
import (
hybridnetwork "github.com/pulumi/pulumi-azure-native-sdk/hybridnetwork/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := hybridnetwork.NewConfigurationGroupValue(ctx, "configurationGroupValue", &hybridnetwork.ConfigurationGroupValueArgs{
ConfigurationGroupValueName: pulumi.String("testConfigurationGroupValue"),
Location: pulumi.String("eastus"),
Properties: &hybridnetwork.ConfigurationValueWithSecretsArgs{
ConfigurationGroupSchemaResourceReference: hybridnetwork.OpenDeploymentResourceReference{
Id: "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
IdType: "Open",
},
ConfigurationType: pulumi.String("Secret"),
SecretConfigurationValue: pulumi.String("{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}"),
},
ResourceGroupName: pulumi.String("rg1"),
})
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.azurenative.hybridnetwork.ConfigurationGroupValue;
import com.pulumi.azurenative.hybridnetwork.ConfigurationGroupValueArgs;
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 configurationGroupValue = new ConfigurationGroupValue("configurationGroupValue", ConfigurationGroupValueArgs.builder()
.configurationGroupValueName("testConfigurationGroupValue")
.location("eastus")
.properties(ConfigurationValueWithSecretsArgs.builder()
.configurationGroupSchemaResourceReference(OpenDeploymentResourceReferenceArgs.builder()
.id("/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName")
.idType("Open")
.build())
.configurationType("Secret")
.secretConfigurationValue("{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}")
.build())
.resourceGroupName("rg1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
configuration_group_value = azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValue",
configuration_group_value_name="testConfigurationGroupValue",
location="eastus",
properties={
"configuration_group_schema_resource_reference": {
"id": "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
"id_type": "Open",
},
"configuration_type": "Secret",
"secret_configuration_value": "{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}",
},
resource_group_name="rg1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const configurationGroupValue = new azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValue", {
configurationGroupValueName: "testConfigurationGroupValue",
location: "eastus",
properties: {
configurationGroupSchemaResourceReference: {
id: "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
idType: "Open",
},
configurationType: "Secret",
secretConfigurationValue: "{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}",
},
resourceGroupName: "rg1",
});
resources:
configurationGroupValue:
type: azure-native:hybridnetwork:ConfigurationGroupValue
properties:
configurationGroupValueName: testConfigurationGroupValue
location: eastus
properties:
configurationGroupSchemaResourceReference:
id: /subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName
idType: Open
configurationType: Secret
secretConfigurationValue: '{"interconnect-groups":{"stripe-one":{"name":"Stripe one","international-interconnects":["france","germany"],"domestic-interconnects":["birmingham","edinburgh"]},"stripe-two":{"name":"Stripe two","international-interconnects":["germany","italy"],"domestic-interconnects":["edinburgh","london"]}},"interconnect-group-assignments":{"ssc-one":{"ssc":"SSC 1","interconnects":"stripe-one"},"ssc-two":{"ssc":"SSC 2","interconnects":"stripe-two"}}}'
resourceGroupName: rg1
Create or update first party configuration group value
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var configurationGroupValue = new AzureNative.HybridNetwork.ConfigurationGroupValue("configurationGroupValue", new()
{
ConfigurationGroupValueName = "testConfigurationGroupValue",
Location = "eastus",
Properties = new AzureNative.HybridNetwork.Inputs.ConfigurationValueWithoutSecretsArgs
{
ConfigurationGroupSchemaResourceReference = new AzureNative.HybridNetwork.Inputs.SecretDeploymentResourceReferenceArgs
{
Id = "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
IdType = "Secret",
},
ConfigurationType = "Open",
ConfigurationValue = "{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}",
},
ResourceGroupName = "rg1",
});
});
package main
import (
hybridnetwork "github.com/pulumi/pulumi-azure-native-sdk/hybridnetwork/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := hybridnetwork.NewConfigurationGroupValue(ctx, "configurationGroupValue", &hybridnetwork.ConfigurationGroupValueArgs{
ConfigurationGroupValueName: pulumi.String("testConfigurationGroupValue"),
Location: pulumi.String("eastus"),
Properties: &hybridnetwork.ConfigurationValueWithoutSecretsArgs{
ConfigurationGroupSchemaResourceReference: hybridnetwork.SecretDeploymentResourceReference{
Id: "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
IdType: "Secret",
},
ConfigurationType: pulumi.String("Open"),
ConfigurationValue: pulumi.String("{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}"),
},
ResourceGroupName: pulumi.String("rg1"),
})
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.azurenative.hybridnetwork.ConfigurationGroupValue;
import com.pulumi.azurenative.hybridnetwork.ConfigurationGroupValueArgs;
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 configurationGroupValue = new ConfigurationGroupValue("configurationGroupValue", ConfigurationGroupValueArgs.builder()
.configurationGroupValueName("testConfigurationGroupValue")
.location("eastus")
.properties(ConfigurationValueWithSecretsArgs.builder()
.configurationGroupSchemaResourceReference(SecretDeploymentResourceReferenceArgs.builder()
.id("/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName")
.idType("Secret")
.build())
.configurationType("Open")
.configurationValue("{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}")
.build())
.resourceGroupName("rg1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
configuration_group_value = azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValue",
configuration_group_value_name="testConfigurationGroupValue",
location="eastus",
properties={
"configuration_group_schema_resource_reference": {
"id": "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
"id_type": "Secret",
},
"configuration_type": "Open",
"configuration_value": "{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}",
},
resource_group_name="rg1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const configurationGroupValue = new azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValue", {
configurationGroupValueName: "testConfigurationGroupValue",
location: "eastus",
properties: {
configurationGroupSchemaResourceReference: {
id: "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
idType: "Secret",
},
configurationType: "Open",
configurationValue: "{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}",
},
resourceGroupName: "rg1",
});
resources:
configurationGroupValue:
type: azure-native:hybridnetwork:ConfigurationGroupValue
properties:
configurationGroupValueName: testConfigurationGroupValue
location: eastus
properties:
configurationGroupSchemaResourceReference:
id: /subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName
idType: Secret
configurationType: Open
configurationValue: '{"interconnect-groups":{"stripe-one":{"name":"Stripe one","international-interconnects":["france","germany"],"domestic-interconnects":["birmingham","edinburgh"]},"stripe-two":{"name":"Stripe two","international-interconnects":["germany","italy"],"domestic-interconnects":["edinburgh","london"]}},"interconnect-group-assignments":{"ssc-one":{"ssc":"SSC 1","interconnects":"stripe-one"},"ssc-two":{"ssc":"SSC 2","interconnects":"stripe-two"}}}'
resourceGroupName: rg1
Create ConfigurationGroupValue Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ConfigurationGroupValue(name: string, args: ConfigurationGroupValueArgs, opts?: CustomResourceOptions);
@overload
def ConfigurationGroupValue(resource_name: str,
args: ConfigurationGroupValueArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ConfigurationGroupValue(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
configuration_group_value_name: Optional[str] = None,
location: Optional[str] = None,
properties: Optional[Union[ConfigurationValueWithSecretsArgs, ConfigurationValueWithoutSecretsArgs]] = None,
tags: Optional[Mapping[str, str]] = None)
func NewConfigurationGroupValue(ctx *Context, name string, args ConfigurationGroupValueArgs, opts ...ResourceOption) (*ConfigurationGroupValue, error)
public ConfigurationGroupValue(string name, ConfigurationGroupValueArgs args, CustomResourceOptions? opts = null)
public ConfigurationGroupValue(String name, ConfigurationGroupValueArgs args)
public ConfigurationGroupValue(String name, ConfigurationGroupValueArgs args, CustomResourceOptions options)
type: azure-native:hybridnetwork:ConfigurationGroupValue
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ConfigurationGroupValueArgs
- 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 ConfigurationGroupValueArgs
- 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 ConfigurationGroupValueArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConfigurationGroupValueArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConfigurationGroupValueArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var configurationGroupValueResource = new AzureNative.HybridNetwork.ConfigurationGroupValue("configurationGroupValueResource", new()
{
ResourceGroupName = "string",
ConfigurationGroupValueName = "string",
Location = "string",
Properties = new AzureNative.HybridNetwork.Inputs.ConfigurationValueWithSecretsArgs
{
ConfigurationType = "Secret",
ConfigurationGroupSchemaResourceReference = new AzureNative.HybridNetwork.Inputs.OpenDeploymentResourceReferenceArgs
{
IdType = "Open",
Id = "string",
},
SecretConfigurationValue = "string",
},
Tags =
{
{ "string", "string" },
},
});
example, err := hybridnetwork.NewConfigurationGroupValue(ctx, "configurationGroupValueResource", &hybridnetwork.ConfigurationGroupValueArgs{
ResourceGroupName: pulumi.String("string"),
ConfigurationGroupValueName: pulumi.String("string"),
Location: pulumi.String("string"),
Properties: &hybridnetwork.ConfigurationValueWithSecretsArgs{
ConfigurationType: pulumi.String("Secret"),
ConfigurationGroupSchemaResourceReference: hybridnetwork.OpenDeploymentResourceReference{
IdType: "Open",
Id: "string",
},
SecretConfigurationValue: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var configurationGroupValueResource = new ConfigurationGroupValue("configurationGroupValueResource", ConfigurationGroupValueArgs.builder()
.resourceGroupName("string")
.configurationGroupValueName("string")
.location("string")
.properties(ConfigurationValueWithSecretsArgs.builder()
.configurationType("Secret")
.configurationGroupSchemaResourceReference(OpenDeploymentResourceReferenceArgs.builder()
.idType("Open")
.id("string")
.build())
.secretConfigurationValue("string")
.build())
.tags(Map.of("string", "string"))
.build());
configuration_group_value_resource = azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValueResource",
resource_group_name="string",
configuration_group_value_name="string",
location="string",
properties={
"configurationType": "Secret",
"configurationGroupSchemaResourceReference": {
"idType": "Open",
"id": "string",
},
"secretConfigurationValue": "string",
},
tags={
"string": "string",
})
const configurationGroupValueResource = new azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValueResource", {
resourceGroupName: "string",
configurationGroupValueName: "string",
location: "string",
properties: {
configurationType: "Secret",
configurationGroupSchemaResourceReference: {
idType: "Open",
id: "string",
},
secretConfigurationValue: "string",
},
tags: {
string: "string",
},
});
type: azure-native:hybridnetwork:ConfigurationGroupValue
properties:
configurationGroupValueName: string
location: string
properties:
configurationGroupSchemaResourceReference:
id: string
idType: Open
configurationType: Secret
secretConfigurationValue: string
resourceGroupName: string
tags:
string: string
ConfigurationGroupValue 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 ConfigurationGroupValue resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Configuration
Group stringValue Name - The name of the configuration group value.
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure | Pulumi.Native. Hybrid Network. Inputs. Configuration Value With Secrets Azure Native. Hybrid Network. Inputs. Configuration Value Without Secrets - Hybrid configuration group value properties.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Configuration
Group stringValue Name - The name of the configuration group value.
- Location string
- The geo-location where the resource lives
- Properties
Configuration
Value | ConfigurationWith Secrets Args Value Without Secrets Args - Hybrid configuration group value properties.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- configuration
Group StringValue Name - The name of the configuration group value.
- location String
- The geo-location where the resource lives
- properties
Configuration
Value | ConfigurationWith Secrets Value Without Secrets - Hybrid configuration group value properties.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- configuration
Group stringValue Name - The name of the configuration group value.
- location string
- The geo-location where the resource lives
- properties
Configuration
Value | ConfigurationWith Secrets Value Without Secrets - Hybrid configuration group value properties.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- configuration_
group_ strvalue_ name - The name of the configuration group value.
- location str
- The geo-location where the resource lives
- properties
Configuration
Value | ConfigurationWith Secrets Args Value Without Secrets Args - Hybrid configuration group value properties.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- configuration
Group StringValue Name - The name of the configuration group value.
- location String
- The geo-location where the resource lives
- properties Property Map | Property Map
- Hybrid configuration group value properties.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the ConfigurationGroupValue resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Hybrid Network. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
ConfigurationValueWithSecrets, ConfigurationValueWithSecretsArgs
- Configuration
Group Pulumi.Schema Resource Reference Azure | Pulumi.Native. Hybrid Network. Inputs. Open Deployment Resource Reference Azure Native. Hybrid Network. Inputs. Secret Deployment Resource Reference - The configuration group schema resource reference.
- Secret
Configuration stringValue - Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
- Configuration
Group OpenSchema Resource Reference Deployment | SecretResource Reference Deployment Resource Reference - The configuration group schema resource reference.
- Secret
Configuration stringValue - Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
- configuration
Group OpenSchema Resource Reference Deployment | SecretResource Reference Deployment Resource Reference - The configuration group schema resource reference.
- secret
Configuration StringValue - Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
- configuration
Group OpenSchema Resource Reference Deployment | SecretResource Reference Deployment Resource Reference - The configuration group schema resource reference.
- secret
Configuration stringValue - Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
- configuration_
group_ Openschema_ resource_ reference Deployment | SecretResource Reference Deployment Resource Reference - The configuration group schema resource reference.
- secret_
configuration_ strvalue - Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
- configuration
Group Property Map | Property MapSchema Resource Reference - The configuration group schema resource reference.
- secret
Configuration StringValue - Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
ConfigurationValueWithSecretsResponse, ConfigurationValueWithSecretsResponseArgs
- Configuration
Group stringSchema Name - The configuration group schema name.
- Configuration
Group stringSchema Offering Location - The location of the configuration group schema offering.
- Provisioning
State string - The provisioning state of the site resource.
- Publisher
Name string - The publisher name for the configuration group schema.
- Publisher
Scope string - The scope of the publisher.
- Configuration
Group Pulumi.Schema Resource Reference Azure | Pulumi.Native. Hybrid Network. Inputs. Open Deployment Resource Reference Response Azure Native. Hybrid Network. Inputs. Secret Deployment Resource Reference Response - The configuration group schema resource reference.
- Configuration
Group stringSchema Name - The configuration group schema name.
- Configuration
Group stringSchema Offering Location - The location of the configuration group schema offering.
- Provisioning
State string - The provisioning state of the site resource.
- Publisher
Name string - The publisher name for the configuration group schema.
- Publisher
Scope string - The scope of the publisher.
- Configuration
Group OpenSchema Resource Reference Deployment | SecretResource Reference Response Deployment Resource Reference Response - The configuration group schema resource reference.
- configuration
Group StringSchema Name - The configuration group schema name.
- configuration
Group StringSchema Offering Location - The location of the configuration group schema offering.
- provisioning
State String - The provisioning state of the site resource.
- publisher
Name String - The publisher name for the configuration group schema.
- publisher
Scope String - The scope of the publisher.
- configuration
Group OpenSchema Resource Reference Deployment | SecretResource Reference Response Deployment Resource Reference Response - The configuration group schema resource reference.
- configuration
Group stringSchema Name - The configuration group schema name.
- configuration
Group stringSchema Offering Location - The location of the configuration group schema offering.
- provisioning
State string - The provisioning state of the site resource.
- publisher
Name string - The publisher name for the configuration group schema.
- publisher
Scope string - The scope of the publisher.
- configuration
Group OpenSchema Resource Reference Deployment | SecretResource Reference Response Deployment Resource Reference Response - The configuration group schema resource reference.
- configuration_
group_ strschema_ name - The configuration group schema name.
- configuration_
group_ strschema_ offering_ location - The location of the configuration group schema offering.
- provisioning_
state str - The provisioning state of the site resource.
- publisher_
name str - The publisher name for the configuration group schema.
- publisher_
scope str - The scope of the publisher.
- configuration_
group_ Openschema_ resource_ reference Deployment | SecretResource Reference Response Deployment Resource Reference Response - The configuration group schema resource reference.
- configuration
Group StringSchema Name - The configuration group schema name.
- configuration
Group StringSchema Offering Location - The location of the configuration group schema offering.
- provisioning
State String - The provisioning state of the site resource.
- publisher
Name String - The publisher name for the configuration group schema.
- publisher
Scope String - The scope of the publisher.
- configuration
Group Property Map | Property MapSchema Resource Reference - The configuration group schema resource reference.
ConfigurationValueWithoutSecrets, ConfigurationValueWithoutSecretsArgs
- Configuration
Group Pulumi.Schema Resource Reference Azure | Pulumi.Native. Hybrid Network. Inputs. Open Deployment Resource Reference Azure Native. Hybrid Network. Inputs. Secret Deployment Resource Reference - The configuration group schema resource reference.
- Configuration
Value string - Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- Configuration
Group OpenSchema Resource Reference Deployment | SecretResource Reference Deployment Resource Reference - The configuration group schema resource reference.
- Configuration
Value string - Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- configuration
Group OpenSchema Resource Reference Deployment | SecretResource Reference Deployment Resource Reference - The configuration group schema resource reference.
- configuration
Value String - Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- configuration
Group OpenSchema Resource Reference Deployment | SecretResource Reference Deployment Resource Reference - The configuration group schema resource reference.
- configuration
Value string - Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- configuration_
group_ Openschema_ resource_ reference Deployment | SecretResource Reference Deployment Resource Reference - The configuration group schema resource reference.
- configuration_
value str - Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- configuration
Group Property Map | Property MapSchema Resource Reference - The configuration group schema resource reference.
- configuration
Value String - Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
ConfigurationValueWithoutSecretsResponse, ConfigurationValueWithoutSecretsResponseArgs
- Configuration
Group stringSchema Name - The configuration group schema name.
- Configuration
Group stringSchema Offering Location - The location of the configuration group schema offering.
- Provisioning
State string - The provisioning state of the site resource.
- Publisher
Name string - The publisher name for the configuration group schema.
- Publisher
Scope string - The scope of the publisher.
- Configuration
Group Pulumi.Schema Resource Reference Azure | Pulumi.Native. Hybrid Network. Inputs. Open Deployment Resource Reference Response Azure Native. Hybrid Network. Inputs. Secret Deployment Resource Reference Response - The configuration group schema resource reference.
- Configuration
Value string - Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- Configuration
Group stringSchema Name - The configuration group schema name.
- Configuration
Group stringSchema Offering Location - The location of the configuration group schema offering.
- Provisioning
State string - The provisioning state of the site resource.
- Publisher
Name string - The publisher name for the configuration group schema.
- Publisher
Scope string - The scope of the publisher.
- Configuration
Group OpenSchema Resource Reference Deployment | SecretResource Reference Response Deployment Resource Reference Response - The configuration group schema resource reference.
- Configuration
Value string - Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- configuration
Group StringSchema Name - The configuration group schema name.
- configuration
Group StringSchema Offering Location - The location of the configuration group schema offering.
- provisioning
State String - The provisioning state of the site resource.
- publisher
Name String - The publisher name for the configuration group schema.
- publisher
Scope String - The scope of the publisher.
- configuration
Group OpenSchema Resource Reference Deployment | SecretResource Reference Response Deployment Resource Reference Response - The configuration group schema resource reference.
- configuration
Value String - Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- configuration
Group stringSchema Name - The configuration group schema name.
- configuration
Group stringSchema Offering Location - The location of the configuration group schema offering.
- provisioning
State string - The provisioning state of the site resource.
- publisher
Name string - The publisher name for the configuration group schema.
- publisher
Scope string - The scope of the publisher.
- configuration
Group OpenSchema Resource Reference Deployment | SecretResource Reference Response Deployment Resource Reference Response - The configuration group schema resource reference.
- configuration
Value string - Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- configuration_
group_ strschema_ name - The configuration group schema name.
- configuration_
group_ strschema_ offering_ location - The location of the configuration group schema offering.
- provisioning_
state str - The provisioning state of the site resource.
- publisher_
name str - The publisher name for the configuration group schema.
- publisher_
scope str - The scope of the publisher.
- configuration_
group_ Openschema_ resource_ reference Deployment | SecretResource Reference Response Deployment Resource Reference Response - The configuration group schema resource reference.
- configuration_
value str - Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- configuration
Group StringSchema Name - The configuration group schema name.
- configuration
Group StringSchema Offering Location - The location of the configuration group schema offering.
- provisioning
State String - The provisioning state of the site resource.
- publisher
Name String - The publisher name for the configuration group schema.
- publisher
Scope String - The scope of the publisher.
- configuration
Group Property Map | Property MapSchema Resource Reference - The configuration group schema resource reference.
- configuration
Value String - Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
OpenDeploymentResourceReference, OpenDeploymentResourceReferenceArgs
- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
OpenDeploymentResourceReferenceResponse, OpenDeploymentResourceReferenceResponseArgs
- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
SecretDeploymentResourceReference, SecretDeploymentResourceReferenceArgs
- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
SecretDeploymentResourceReferenceResponse, SecretDeploymentResourceReferenceResponseArgs
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:hybridnetwork:ConfigurationGroupValue testConfigurationGroupValue /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HybridNetwork/configurationGroupValues/{configurationGroupValueName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0