1. Packages
  2. Azure Native v2
  3. API Docs
  4. hybridnetwork
  5. ConfigurationGroupValue
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.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",
    });

});
Copy
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
	})
}
Copy
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());

    }
}
Copy
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",
});
Copy
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")
Copy
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
Copy

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",
    });

});
Copy
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
	})
}
Copy
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());

    }
}
Copy
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",
});
Copy
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")
Copy
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
Copy

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",
    });

});
Copy
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
	})
}
Copy
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());

    }
}
Copy
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",
});
Copy
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")
Copy
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
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. ConfigurationGroupValueArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. ConfigurationGroupValueArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ConfigurationGroupValueArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 = 
    {
        { "configurationType", "Secret" },
        { "configurationGroupSchemaResourceReference", 
        {
            { "idType", "Open" },
            { "id", "string" },
        } },
        { "secretConfigurationValue", "string" },
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := hybridnetwork.NewConfigurationGroupValue(ctx, "configurationGroupValueResource", &hybridnetwork.ConfigurationGroupValueArgs{
	ResourceGroupName:           "string",
	ConfigurationGroupValueName: "string",
	Location:                    "string",
	Properties: map[string]interface{}{
		"configurationType": "Secret",
		"configurationGroupSchemaResourceReference": map[string]interface{}{
			"idType": "Open",
			"id":     "string",
		},
		"secretConfigurationValue": "string",
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var configurationGroupValueResource = new ConfigurationGroupValue("configurationGroupValueResource", ConfigurationGroupValueArgs.builder()
    .resourceGroupName("string")
    .configurationGroupValueName("string")
    .location("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
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,
    })
Copy
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",
    },
});
Copy
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
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ConfigurationGroupValue resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ConfigurationGroupValueName Changes to this property will trigger replacement. string
The name of the configuration group value.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Properties Pulumi.AzureNative.HybridNetwork.Inputs.ConfigurationValueWithSecrets | Pulumi.AzureNative.HybridNetwork.Inputs.ConfigurationValueWithoutSecrets
Hybrid configuration group value properties.
Tags Dictionary<string, string>
Resource tags.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ConfigurationGroupValueName Changes to this property will trigger replacement. string
The name of the configuration group value.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Properties ConfigurationValueWithSecretsArgs | ConfigurationValueWithoutSecretsArgs
Hybrid configuration group value properties.
Tags map[string]string
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
configurationGroupValueName Changes to this property will trigger replacement. String
The name of the configuration group value.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
properties ConfigurationValueWithSecrets | ConfigurationValueWithoutSecrets
Hybrid configuration group value properties.
tags Map<String,String>
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
configurationGroupValueName Changes to this property will trigger replacement. string
The name of the configuration group value.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
properties ConfigurationValueWithSecrets | ConfigurationValueWithoutSecrets
Hybrid configuration group value properties.
tags {[key: string]: string}
Resource tags.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
configuration_group_value_name Changes to this property will trigger replacement. str
The name of the configuration group value.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
properties ConfigurationValueWithSecretsArgs | ConfigurationValueWithoutSecretsArgs
Hybrid configuration group value properties.
tags Mapping[str, str]
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
configurationGroupValueName Changes to this property will trigger replacement. String
The name of the configuration group value.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
properties Property Map | Property Map
Hybrid configuration group value properties.
tags 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
SystemData Pulumi.AzureNative.HybridNetwork.Outputs.SystemDataResponse
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
SystemData SystemDataResponse
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
systemData SystemDataResponse
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
systemData SystemDataResponse
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 SystemDataResponse
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
systemData 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

ConfigurationGroupSchemaResourceReference Pulumi.AzureNative.HybridNetwork.Inputs.OpenDeploymentResourceReference | Pulumi.AzureNative.HybridNetwork.Inputs.SecretDeploymentResourceReference
The configuration group schema resource reference.
SecretConfigurationValue string
Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
ConfigurationGroupSchemaResourceReference OpenDeploymentResourceReference | SecretDeploymentResourceReference
The configuration group schema resource reference.
SecretConfigurationValue string
Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
configurationGroupSchemaResourceReference OpenDeploymentResourceReference | SecretDeploymentResourceReference
The configuration group schema resource reference.
secretConfigurationValue String
Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
configurationGroupSchemaResourceReference OpenDeploymentResourceReference | SecretDeploymentResourceReference
The configuration group schema resource reference.
secretConfigurationValue string
Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
configuration_group_schema_resource_reference OpenDeploymentResourceReference | SecretDeploymentResourceReference
The configuration group schema resource reference.
secret_configuration_value str
Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
configurationGroupSchemaResourceReference Property Map | Property Map
The configuration group schema resource reference.
secretConfigurationValue String
Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.

ConfigurationValueWithSecretsResponse
, ConfigurationValueWithSecretsResponseArgs

ConfigurationGroupSchemaName This property is required. string
The configuration group schema name.
ConfigurationGroupSchemaOfferingLocation This property is required. string
The location of the configuration group schema offering.
ProvisioningState This property is required. string
The provisioning state of the site resource.
PublisherName This property is required. string
The publisher name for the configuration group schema.
PublisherScope This property is required. string
The scope of the publisher.
ConfigurationGroupSchemaResourceReference Pulumi.AzureNative.HybridNetwork.Inputs.OpenDeploymentResourceReferenceResponse | Pulumi.AzureNative.HybridNetwork.Inputs.SecretDeploymentResourceReferenceResponse
The configuration group schema resource reference.
ConfigurationGroupSchemaName This property is required. string
The configuration group schema name.
ConfigurationGroupSchemaOfferingLocation This property is required. string
The location of the configuration group schema offering.
ProvisioningState This property is required. string
The provisioning state of the site resource.
PublisherName This property is required. string
The publisher name for the configuration group schema.
PublisherScope This property is required. string
The scope of the publisher.
ConfigurationGroupSchemaResourceReference OpenDeploymentResourceReferenceResponse | SecretDeploymentResourceReferenceResponse
The configuration group schema resource reference.
configurationGroupSchemaName This property is required. String
The configuration group schema name.
configurationGroupSchemaOfferingLocation This property is required. String
The location of the configuration group schema offering.
provisioningState This property is required. String
The provisioning state of the site resource.
publisherName This property is required. String
The publisher name for the configuration group schema.
publisherScope This property is required. String
The scope of the publisher.
configurationGroupSchemaResourceReference OpenDeploymentResourceReferenceResponse | SecretDeploymentResourceReferenceResponse
The configuration group schema resource reference.
configurationGroupSchemaName This property is required. string
The configuration group schema name.
configurationGroupSchemaOfferingLocation This property is required. string
The location of the configuration group schema offering.
provisioningState This property is required. string
The provisioning state of the site resource.
publisherName This property is required. string
The publisher name for the configuration group schema.
publisherScope This property is required. string
The scope of the publisher.
configurationGroupSchemaResourceReference OpenDeploymentResourceReferenceResponse | SecretDeploymentResourceReferenceResponse
The configuration group schema resource reference.
configuration_group_schema_name This property is required. str
The configuration group schema name.
configuration_group_schema_offering_location This property is required. str
The location of the configuration group schema offering.
provisioning_state This property is required. str
The provisioning state of the site resource.
publisher_name This property is required. str
The publisher name for the configuration group schema.
publisher_scope This property is required. str
The scope of the publisher.
configuration_group_schema_resource_reference OpenDeploymentResourceReferenceResponse | SecretDeploymentResourceReferenceResponse
The configuration group schema resource reference.
configurationGroupSchemaName This property is required. String
The configuration group schema name.
configurationGroupSchemaOfferingLocation This property is required. String
The location of the configuration group schema offering.
provisioningState This property is required. String
The provisioning state of the site resource.
publisherName This property is required. String
The publisher name for the configuration group schema.
publisherScope This property is required. String
The scope of the publisher.
configurationGroupSchemaResourceReference Property Map | Property Map
The configuration group schema resource reference.

ConfigurationValueWithoutSecrets
, ConfigurationValueWithoutSecretsArgs

ConfigurationGroupSchemaResourceReference Pulumi.AzureNative.HybridNetwork.Inputs.OpenDeploymentResourceReference | Pulumi.AzureNative.HybridNetwork.Inputs.SecretDeploymentResourceReference
The configuration group schema resource reference.
ConfigurationValue string
Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
ConfigurationGroupSchemaResourceReference OpenDeploymentResourceReference | SecretDeploymentResourceReference
The configuration group schema resource reference.
ConfigurationValue string
Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
configurationGroupSchemaResourceReference OpenDeploymentResourceReference | SecretDeploymentResourceReference
The configuration group schema resource reference.
configurationValue String
Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
configurationGroupSchemaResourceReference OpenDeploymentResourceReference | SecretDeploymentResourceReference
The configuration group schema resource reference.
configurationValue string
Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
configuration_group_schema_resource_reference OpenDeploymentResourceReference | SecretDeploymentResourceReference
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.
configurationGroupSchemaResourceReference Property Map | Property Map
The configuration group schema resource reference.
configurationValue String
Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.

ConfigurationValueWithoutSecretsResponse
, ConfigurationValueWithoutSecretsResponseArgs

ConfigurationGroupSchemaName This property is required. string
The configuration group schema name.
ConfigurationGroupSchemaOfferingLocation This property is required. string
The location of the configuration group schema offering.
ProvisioningState This property is required. string
The provisioning state of the site resource.
PublisherName This property is required. string
The publisher name for the configuration group schema.
PublisherScope This property is required. string
The scope of the publisher.
ConfigurationGroupSchemaResourceReference Pulumi.AzureNative.HybridNetwork.Inputs.OpenDeploymentResourceReferenceResponse | Pulumi.AzureNative.HybridNetwork.Inputs.SecretDeploymentResourceReferenceResponse
The configuration group schema resource reference.
ConfigurationValue string
Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
ConfigurationGroupSchemaName This property is required. string
The configuration group schema name.
ConfigurationGroupSchemaOfferingLocation This property is required. string
The location of the configuration group schema offering.
ProvisioningState This property is required. string
The provisioning state of the site resource.
PublisherName This property is required. string
The publisher name for the configuration group schema.
PublisherScope This property is required. string
The scope of the publisher.
ConfigurationGroupSchemaResourceReference OpenDeploymentResourceReferenceResponse | SecretDeploymentResourceReferenceResponse
The configuration group schema resource reference.
ConfigurationValue string
Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
configurationGroupSchemaName This property is required. String
The configuration group schema name.
configurationGroupSchemaOfferingLocation This property is required. String
The location of the configuration group schema offering.
provisioningState This property is required. String
The provisioning state of the site resource.
publisherName This property is required. String
The publisher name for the configuration group schema.
publisherScope This property is required. String
The scope of the publisher.
configurationGroupSchemaResourceReference OpenDeploymentResourceReferenceResponse | SecretDeploymentResourceReferenceResponse
The configuration group schema resource reference.
configurationValue String
Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
configurationGroupSchemaName This property is required. string
The configuration group schema name.
configurationGroupSchemaOfferingLocation This property is required. string
The location of the configuration group schema offering.
provisioningState This property is required. string
The provisioning state of the site resource.
publisherName This property is required. string
The publisher name for the configuration group schema.
publisherScope This property is required. string
The scope of the publisher.
configurationGroupSchemaResourceReference OpenDeploymentResourceReferenceResponse | SecretDeploymentResourceReferenceResponse
The configuration group schema resource reference.
configurationValue string
Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
configuration_group_schema_name This property is required. str
The configuration group schema name.
configuration_group_schema_offering_location This property is required. str
The location of the configuration group schema offering.
provisioning_state This property is required. str
The provisioning state of the site resource.
publisher_name This property is required. str
The publisher name for the configuration group schema.
publisher_scope This property is required. str
The scope of the publisher.
configuration_group_schema_resource_reference OpenDeploymentResourceReferenceResponse | SecretDeploymentResourceReferenceResponse
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.
configurationGroupSchemaName This property is required. String
The configuration group schema name.
configurationGroupSchemaOfferingLocation This property is required. String
The location of the configuration group schema offering.
provisioningState This property is required. String
The provisioning state of the site resource.
publisherName This property is required. String
The publisher name for the configuration group schema.
publisherScope This property is required. String
The scope of the publisher.
configurationGroupSchemaResourceReference Property Map | Property Map
The configuration group schema resource reference.
configurationValue 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

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
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_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
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} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0