Microsoft.HybridNetwork configurationGroupValues

ARM template resource definition

The configurationGroupValues resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.HybridNetwork/configurationGroupValues resource, add the following JSON to your template.

{
  "type": "Microsoft.HybridNetwork/configurationGroupValues",
  "apiVersion": "2023-09-01",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "properties": {
    "configurationGroupSchemaResourceReference": {
      "idType": "string"
      // For remaining properties, see DeploymentResourceIdReference objects
    },
    "configurationType": "string"
    // For remaining properties, see ConfigurationGroupValuePropertiesFormat objects
  }
}

ConfigurationGroupValuePropertiesFormat objects

Set the configurationType property to specify the type of object.

For Open, use:

  "configurationType": "Open",
  "configurationValue": "string"

For Secret, use:

  "configurationType": "Secret",
  "secretConfigurationValue": "string"

DeploymentResourceIdReference objects

Set the idType property to specify the type of object.

For Open, use:

  "idType": "Open",
  "id": "string"

For Secret, use:

  "idType": "Secret",
  "id": "string"

Property values

configurationGroupValues

Name Description Value
type The resource type 'Microsoft.HybridNetwork/configurationGroupValues'
apiVersion The resource api version '2023-09-01'
name The resource name string (required)
location The geo-location where the resource lives string (required)
tags Resource tags. Dictionary of tag names and values. See Tags in templates
properties Hybrid configuration group value properties. ConfigurationGroupValuePropertiesFormat

ConfigurationGroupValuePropertiesFormat

Name Description Value
configurationGroupSchemaResourceReference The configuration group schema resource reference. DeploymentResourceIdReference
configurationType Set the object type Open
Secret (required)

DeploymentResourceIdReference

Name Description Value
idType Set the object type Open
Secret (required)

OpenDeploymentResourceReference

Name Description Value
idType The resource reference arm id type. 'Open' (required)
id Resource ID. string

SecretDeploymentResourceReference

Name Description Value
idType The resource reference arm id type. 'Secret' (required)
id Resource ID. string

Constraints:
Sensitive value. Pass in as a secure parameter.

ConfigurationValueWithoutSecrets

Name Description Value
configurationType The value which indicates if configuration values are secrets 'Open' (required)
configurationValue Name and value pairs that define the configuration value. It can be a well formed escaped JSON string. string

ConfigurationValueWithSecrets

Name Description Value
configurationType The value which indicates if configuration values are secrets 'Secret' (required)
secretConfigurationValue Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string. string

Constraints:
Sensitive value. Pass in as a secure parameter.