1. Packages
  2. Cisco Catalyst SD-WAN Provider
  3. API Docs
  4. ConfigurationGroup
Cisco Catalyst SD-WAN v0.3.0 published on Friday, Mar 28, 2025 by Pulumi

sdwan.ConfigurationGroup

Explore with Pulumi AI

This resource can manage a Configuration Group .

  • Minimum SD-WAN Manager version: 20.12.0

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";

const example = new sdwan.ConfigurationGroup("example", {
    name: "CG_1",
    description: "My config group 1",
    solution: "sdwan",
    featureProfileIds: ["f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"],
    devices: [{
        id: "C8K-40C0CCFD-9EA8-2B2E-E73B-32C5924EC79B",
        variables: [{
            name: "host_name",
            value: "edge1",
        }],
    }],
});
Copy
import pulumi
import pulumi_sdwan as sdwan

example = sdwan.ConfigurationGroup("example",
    name="CG_1",
    description="My config group 1",
    solution="sdwan",
    feature_profile_ids=["f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"],
    devices=[{
        "id": "C8K-40C0CCFD-9EA8-2B2E-E73B-32C5924EC79B",
        "variables": [{
            "name": "host_name",
            "value": "edge1",
        }],
    }])
Copy
package main

import (
	"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sdwan.NewConfigurationGroup(ctx, "example", &sdwan.ConfigurationGroupArgs{
			Name:        pulumi.String("CG_1"),
			Description: pulumi.String("My config group 1"),
			Solution:    pulumi.String("sdwan"),
			FeatureProfileIds: pulumi.StringArray{
				pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
			},
			Devices: sdwan.ConfigurationGroupDeviceArray{
				&sdwan.ConfigurationGroupDeviceArgs{
					Id: pulumi.String("C8K-40C0CCFD-9EA8-2B2E-E73B-32C5924EC79B"),
					Variables: sdwan.ConfigurationGroupDeviceVariableArray{
						&sdwan.ConfigurationGroupDeviceVariableArgs{
							Name:  pulumi.String("host_name"),
							Value: pulumi.String("edge1"),
						},
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;

return await Deployment.RunAsync(() => 
{
    var example = new Sdwan.ConfigurationGroup("example", new()
    {
        Name = "CG_1",
        Description = "My config group 1",
        Solution = "sdwan",
        FeatureProfileIds = new[]
        {
            "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        },
        Devices = new[]
        {
            new Sdwan.Inputs.ConfigurationGroupDeviceArgs
            {
                Id = "C8K-40C0CCFD-9EA8-2B2E-E73B-32C5924EC79B",
                Variables = new[]
                {
                    new Sdwan.Inputs.ConfigurationGroupDeviceVariableArgs
                    {
                        Name = "host_name",
                        Value = "edge1",
                    },
                },
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.ConfigurationGroup;
import com.pulumi.sdwan.ConfigurationGroupArgs;
import com.pulumi.sdwan.inputs.ConfigurationGroupDeviceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new ConfigurationGroup("example", ConfigurationGroupArgs.builder()
            .name("CG_1")
            .description("My config group 1")
            .solution("sdwan")
            .featureProfileIds("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
            .devices(ConfigurationGroupDeviceArgs.builder()
                .id("C8K-40C0CCFD-9EA8-2B2E-E73B-32C5924EC79B")
                .variables(ConfigurationGroupDeviceVariableArgs.builder()
                    .name("host_name")
                    .value("edge1")
                    .build())
                .build())
            .build());

    }
}
Copy
resources:
  example:
    type: sdwan:ConfigurationGroup
    properties:
      name: CG_1
      description: My config group 1
      solution: sdwan
      featureProfileIds:
        - f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
      devices:
        - id: C8K-40C0CCFD-9EA8-2B2E-E73B-32C5924EC79B
          variables:
            - name: host_name
              value: edge1
Copy

Create ConfigurationGroup Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ConfigurationGroup(name: string, args: ConfigurationGroupArgs, opts?: CustomResourceOptions);
@overload
def ConfigurationGroup(resource_name: str,
                       args: ConfigurationGroupArgs,
                       opts: Optional[ResourceOptions] = None)

@overload
def ConfigurationGroup(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       description: Optional[str] = None,
                       solution: Optional[str] = None,
                       devices: Optional[Sequence[ConfigurationGroupDeviceArgs]] = None,
                       feature_profile_ids: Optional[Sequence[str]] = None,
                       feature_versions: Optional[Sequence[str]] = None,
                       name: Optional[str] = None,
                       topology_devices: Optional[Sequence[ConfigurationGroupTopologyDeviceArgs]] = None,
                       topology_site_devices: Optional[int] = None)
func NewConfigurationGroup(ctx *Context, name string, args ConfigurationGroupArgs, opts ...ResourceOption) (*ConfigurationGroup, error)
public ConfigurationGroup(string name, ConfigurationGroupArgs args, CustomResourceOptions? opts = null)
public ConfigurationGroup(String name, ConfigurationGroupArgs args)
public ConfigurationGroup(String name, ConfigurationGroupArgs args, CustomResourceOptions options)
type: sdwan:ConfigurationGroup
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. ConfigurationGroupArgs
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. ConfigurationGroupArgs
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. ConfigurationGroupArgs
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. ConfigurationGroupArgs
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. ConfigurationGroupArgs
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 configurationGroupResource = new Sdwan.ConfigurationGroup("configurationGroupResource", new()
{
    Description = "string",
    Solution = "string",
    Devices = new[]
    {
        new Sdwan.Inputs.ConfigurationGroupDeviceArgs
        {
            Deploy = false,
            Id = "string",
            Variables = new[]
            {
                new Sdwan.Inputs.ConfigurationGroupDeviceVariableArgs
                {
                    Name = "string",
                    ListValues = new[]
                    {
                        "string",
                    },
                    Value = "string",
                },
            },
        },
    },
    FeatureProfileIds = new[]
    {
        "string",
    },
    FeatureVersions = new[]
    {
        "string",
    },
    Name = "string",
    TopologyDevices = new[]
    {
        new Sdwan.Inputs.ConfigurationGroupTopologyDeviceArgs
        {
            CriteriaAttribute = "string",
            CriteriaValue = "string",
            UnsupportedFeatures = new[]
            {
                new Sdwan.Inputs.ConfigurationGroupTopologyDeviceUnsupportedFeatureArgs
                {
                    ParcelId = "string",
                    ParcelType = "string",
                },
            },
        },
    },
    TopologySiteDevices = 0,
});
Copy
example, err := sdwan.NewConfigurationGroup(ctx, "configurationGroupResource", &sdwan.ConfigurationGroupArgs{
	Description: pulumi.String("string"),
	Solution:    pulumi.String("string"),
	Devices: sdwan.ConfigurationGroupDeviceArray{
		&sdwan.ConfigurationGroupDeviceArgs{
			Deploy: pulumi.Bool(false),
			Id:     pulumi.String("string"),
			Variables: sdwan.ConfigurationGroupDeviceVariableArray{
				&sdwan.ConfigurationGroupDeviceVariableArgs{
					Name: pulumi.String("string"),
					ListValues: pulumi.StringArray{
						pulumi.String("string"),
					},
					Value: pulumi.String("string"),
				},
			},
		},
	},
	FeatureProfileIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	FeatureVersions: pulumi.StringArray{
		pulumi.String("string"),
	},
	Name: pulumi.String("string"),
	TopologyDevices: sdwan.ConfigurationGroupTopologyDeviceArray{
		&sdwan.ConfigurationGroupTopologyDeviceArgs{
			CriteriaAttribute: pulumi.String("string"),
			CriteriaValue:     pulumi.String("string"),
			UnsupportedFeatures: sdwan.ConfigurationGroupTopologyDeviceUnsupportedFeatureArray{
				&sdwan.ConfigurationGroupTopologyDeviceUnsupportedFeatureArgs{
					ParcelId:   pulumi.String("string"),
					ParcelType: pulumi.String("string"),
				},
			},
		},
	},
	TopologySiteDevices: pulumi.Int(0),
})
Copy
var configurationGroupResource = new ConfigurationGroup("configurationGroupResource", ConfigurationGroupArgs.builder()
    .description("string")
    .solution("string")
    .devices(ConfigurationGroupDeviceArgs.builder()
        .deploy(false)
        .id("string")
        .variables(ConfigurationGroupDeviceVariableArgs.builder()
            .name("string")
            .listValues("string")
            .value("string")
            .build())
        .build())
    .featureProfileIds("string")
    .featureVersions("string")
    .name("string")
    .topologyDevices(ConfigurationGroupTopologyDeviceArgs.builder()
        .criteriaAttribute("string")
        .criteriaValue("string")
        .unsupportedFeatures(ConfigurationGroupTopologyDeviceUnsupportedFeatureArgs.builder()
            .parcelId("string")
            .parcelType("string")
            .build())
        .build())
    .topologySiteDevices(0)
    .build());
Copy
configuration_group_resource = sdwan.ConfigurationGroup("configurationGroupResource",
    description="string",
    solution="string",
    devices=[{
        "deploy": False,
        "id": "string",
        "variables": [{
            "name": "string",
            "list_values": ["string"],
            "value": "string",
        }],
    }],
    feature_profile_ids=["string"],
    feature_versions=["string"],
    name="string",
    topology_devices=[{
        "criteria_attribute": "string",
        "criteria_value": "string",
        "unsupported_features": [{
            "parcel_id": "string",
            "parcel_type": "string",
        }],
    }],
    topology_site_devices=0)
Copy
const configurationGroupResource = new sdwan.ConfigurationGroup("configurationGroupResource", {
    description: "string",
    solution: "string",
    devices: [{
        deploy: false,
        id: "string",
        variables: [{
            name: "string",
            listValues: ["string"],
            value: "string",
        }],
    }],
    featureProfileIds: ["string"],
    featureVersions: ["string"],
    name: "string",
    topologyDevices: [{
        criteriaAttribute: "string",
        criteriaValue: "string",
        unsupportedFeatures: [{
            parcelId: "string",
            parcelType: "string",
        }],
    }],
    topologySiteDevices: 0,
});
Copy
type: sdwan:ConfigurationGroup
properties:
    description: string
    devices:
        - deploy: false
          id: string
          variables:
            - listValues:
                - string
              name: string
              value: string
    featureProfileIds:
        - string
    featureVersions:
        - string
    name: string
    solution: string
    topologyDevices:
        - criteriaAttribute: string
          criteriaValue: string
          unsupportedFeatures:
            - parcelId: string
              parcelType: string
    topologySiteDevices: 0
Copy

ConfigurationGroup 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 ConfigurationGroup resource accepts the following input properties:

Description This property is required. string
Description
Solution This property is required. string
Type of solution - Choices: mobility, sdwan, nfvirtual
Devices List<ConfigurationGroupDevice>
List of devices
FeatureProfileIds List<string>
List of feature profile IDs
FeatureVersions List<string>
List of all associated feature versions
Name string
The name of the configuration group
TopologyDevices List<ConfigurationGroupTopologyDevice>
List of topology device types
TopologySiteDevices int
Number of devices per site - Range: 1-20
Description This property is required. string
Description
Solution This property is required. string
Type of solution - Choices: mobility, sdwan, nfvirtual
Devices []ConfigurationGroupDeviceArgs
List of devices
FeatureProfileIds []string
List of feature profile IDs
FeatureVersions []string
List of all associated feature versions
Name string
The name of the configuration group
TopologyDevices []ConfigurationGroupTopologyDeviceArgs
List of topology device types
TopologySiteDevices int
Number of devices per site - Range: 1-20
description This property is required. String
Description
solution This property is required. String
Type of solution - Choices: mobility, sdwan, nfvirtual
devices List<ConfigurationGroupDevice>
List of devices
featureProfileIds List<String>
List of feature profile IDs
featureVersions List<String>
List of all associated feature versions
name String
The name of the configuration group
topologyDevices List<ConfigurationGroupTopologyDevice>
List of topology device types
topologySiteDevices Integer
Number of devices per site - Range: 1-20
description This property is required. string
Description
solution This property is required. string
Type of solution - Choices: mobility, sdwan, nfvirtual
devices ConfigurationGroupDevice[]
List of devices
featureProfileIds string[]
List of feature profile IDs
featureVersions string[]
List of all associated feature versions
name string
The name of the configuration group
topologyDevices ConfigurationGroupTopologyDevice[]
List of topology device types
topologySiteDevices number
Number of devices per site - Range: 1-20
description This property is required. str
Description
solution This property is required. str
Type of solution - Choices: mobility, sdwan, nfvirtual
devices Sequence[ConfigurationGroupDeviceArgs]
List of devices
feature_profile_ids Sequence[str]
List of feature profile IDs
feature_versions Sequence[str]
List of all associated feature versions
name str
The name of the configuration group
topology_devices Sequence[ConfigurationGroupTopologyDeviceArgs]
List of topology device types
topology_site_devices int
Number of devices per site - Range: 1-20
description This property is required. String
Description
solution This property is required. String
Type of solution - Choices: mobility, sdwan, nfvirtual
devices List<Property Map>
List of devices
featureProfileIds List<String>
List of feature profile IDs
featureVersions List<String>
List of all associated feature versions
name String
The name of the configuration group
topologyDevices List<Property Map>
List of topology device types
topologySiteDevices Number
Number of devices per site - Range: 1-20

Outputs

All input properties are implicitly available as output properties. Additionally, the ConfigurationGroup resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing ConfigurationGroup Resource

Get an existing ConfigurationGroup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: ConfigurationGroupState, opts?: CustomResourceOptions): ConfigurationGroup
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        devices: Optional[Sequence[ConfigurationGroupDeviceArgs]] = None,
        feature_profile_ids: Optional[Sequence[str]] = None,
        feature_versions: Optional[Sequence[str]] = None,
        name: Optional[str] = None,
        solution: Optional[str] = None,
        topology_devices: Optional[Sequence[ConfigurationGroupTopologyDeviceArgs]] = None,
        topology_site_devices: Optional[int] = None) -> ConfigurationGroup
func GetConfigurationGroup(ctx *Context, name string, id IDInput, state *ConfigurationGroupState, opts ...ResourceOption) (*ConfigurationGroup, error)
public static ConfigurationGroup Get(string name, Input<string> id, ConfigurationGroupState? state, CustomResourceOptions? opts = null)
public static ConfigurationGroup get(String name, Output<String> id, ConfigurationGroupState state, CustomResourceOptions options)
resources:  _:    type: sdwan:ConfigurationGroup    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Description string
Description
Devices List<ConfigurationGroupDevice>
List of devices
FeatureProfileIds List<string>
List of feature profile IDs
FeatureVersions List<string>
List of all associated feature versions
Name string
The name of the configuration group
Solution string
Type of solution - Choices: mobility, sdwan, nfvirtual
TopologyDevices List<ConfigurationGroupTopologyDevice>
List of topology device types
TopologySiteDevices int
Number of devices per site - Range: 1-20
Description string
Description
Devices []ConfigurationGroupDeviceArgs
List of devices
FeatureProfileIds []string
List of feature profile IDs
FeatureVersions []string
List of all associated feature versions
Name string
The name of the configuration group
Solution string
Type of solution - Choices: mobility, sdwan, nfvirtual
TopologyDevices []ConfigurationGroupTopologyDeviceArgs
List of topology device types
TopologySiteDevices int
Number of devices per site - Range: 1-20
description String
Description
devices List<ConfigurationGroupDevice>
List of devices
featureProfileIds List<String>
List of feature profile IDs
featureVersions List<String>
List of all associated feature versions
name String
The name of the configuration group
solution String
Type of solution - Choices: mobility, sdwan, nfvirtual
topologyDevices List<ConfigurationGroupTopologyDevice>
List of topology device types
topologySiteDevices Integer
Number of devices per site - Range: 1-20
description string
Description
devices ConfigurationGroupDevice[]
List of devices
featureProfileIds string[]
List of feature profile IDs
featureVersions string[]
List of all associated feature versions
name string
The name of the configuration group
solution string
Type of solution - Choices: mobility, sdwan, nfvirtual
topologyDevices ConfigurationGroupTopologyDevice[]
List of topology device types
topologySiteDevices number
Number of devices per site - Range: 1-20
description str
Description
devices Sequence[ConfigurationGroupDeviceArgs]
List of devices
feature_profile_ids Sequence[str]
List of feature profile IDs
feature_versions Sequence[str]
List of all associated feature versions
name str
The name of the configuration group
solution str
Type of solution - Choices: mobility, sdwan, nfvirtual
topology_devices Sequence[ConfigurationGroupTopologyDeviceArgs]
List of topology device types
topology_site_devices int
Number of devices per site - Range: 1-20
description String
Description
devices List<Property Map>
List of devices
featureProfileIds List<String>
List of feature profile IDs
featureVersions List<String>
List of all associated feature versions
name String
The name of the configuration group
solution String
Type of solution - Choices: mobility, sdwan, nfvirtual
topologyDevices List<Property Map>
List of topology device types
topologySiteDevices Number
Number of devices per site - Range: 1-20

Supporting Types

ConfigurationGroupDevice
, ConfigurationGroupDeviceArgs

Deploy bool
Deploy to device if enabled.

  • Default value: false
Id string
Device ID
Variables List<ConfigurationGroupDeviceVariable>
List of variables
Deploy bool
Deploy to device if enabled.

  • Default value: false
Id string
Device ID
Variables []ConfigurationGroupDeviceVariable
List of variables
deploy Boolean
Deploy to device if enabled.

  • Default value: false
id String
Device ID
variables List<ConfigurationGroupDeviceVariable>
List of variables
deploy boolean
Deploy to device if enabled.

  • Default value: false
id string
Device ID
variables ConfigurationGroupDeviceVariable[]
List of variables
deploy bool
Deploy to device if enabled.

  • Default value: false
id str
Device ID
variables Sequence[ConfigurationGroupDeviceVariable]
List of variables
deploy Boolean
Deploy to device if enabled.

  • Default value: false
id String
Device ID
variables List<Property Map>
List of variables

ConfigurationGroupDeviceVariable
, ConfigurationGroupDeviceVariableArgs

Name This property is required. string
Variable name
ListValues List<string>
Use this instead of value in case value is of type List.
Value string
Variable value
Name This property is required. string
Variable name
ListValues []string
Use this instead of value in case value is of type List.
Value string
Variable value
name This property is required. String
Variable name
listValues List<String>
Use this instead of value in case value is of type List.
value String
Variable value
name This property is required. string
Variable name
listValues string[]
Use this instead of value in case value is of type List.
value string
Variable value
name This property is required. str
Variable name
list_values Sequence[str]
Use this instead of value in case value is of type List.
value str
Variable value
name This property is required. String
Variable name
listValues List<String>
Use this instead of value in case value is of type List.
value String
Variable value

ConfigurationGroupTopologyDevice
, ConfigurationGroupTopologyDeviceArgs

CriteriaAttribute This property is required. string
Criteria attribute

  • Choices: tag
CriteriaValue string
Criteria value
UnsupportedFeatures List<ConfigurationGroupTopologyDeviceUnsupportedFeature>
List of unsupported features
CriteriaAttribute This property is required. string
Criteria attribute

  • Choices: tag
CriteriaValue string
Criteria value
UnsupportedFeatures []ConfigurationGroupTopologyDeviceUnsupportedFeature
List of unsupported features
criteriaAttribute This property is required. String
Criteria attribute

  • Choices: tag
criteriaValue String
Criteria value
unsupportedFeatures List<ConfigurationGroupTopologyDeviceUnsupportedFeature>
List of unsupported features
criteriaAttribute This property is required. string
Criteria attribute

  • Choices: tag
criteriaValue string
Criteria value
unsupportedFeatures ConfigurationGroupTopologyDeviceUnsupportedFeature[]
List of unsupported features
criteria_attribute This property is required. str
Criteria attribute

  • Choices: tag
criteria_value str
Criteria value
unsupported_features Sequence[ConfigurationGroupTopologyDeviceUnsupportedFeature]
List of unsupported features
criteriaAttribute This property is required. String
Criteria attribute

  • Choices: tag
criteriaValue String
Criteria value
unsupportedFeatures List<Property Map>
List of unsupported features

ConfigurationGroupTopologyDeviceUnsupportedFeature
, ConfigurationGroupTopologyDeviceUnsupportedFeatureArgs

ParcelId string
Parcel ID
ParcelType string
Parcel type

  • Choices: wan/vpn/interface/gre, wan/vpn/interface/ethernet, wan/vpn/interface/cellular, wan/vpn/interface/ipsec, wan/vpn/interface/serial, routing/ospf, lan/vpn/interface/ethernet, lan/vpn/interface/svi, lan/vpn/interface/ipsec, lan/vpn
ParcelId string
Parcel ID
ParcelType string
Parcel type

  • Choices: wan/vpn/interface/gre, wan/vpn/interface/ethernet, wan/vpn/interface/cellular, wan/vpn/interface/ipsec, wan/vpn/interface/serial, routing/ospf, lan/vpn/interface/ethernet, lan/vpn/interface/svi, lan/vpn/interface/ipsec, lan/vpn
parcelId String
Parcel ID
parcelType String
Parcel type

  • Choices: wan/vpn/interface/gre, wan/vpn/interface/ethernet, wan/vpn/interface/cellular, wan/vpn/interface/ipsec, wan/vpn/interface/serial, routing/ospf, lan/vpn/interface/ethernet, lan/vpn/interface/svi, lan/vpn/interface/ipsec, lan/vpn
parcelId string
Parcel ID
parcelType string
Parcel type

  • Choices: wan/vpn/interface/gre, wan/vpn/interface/ethernet, wan/vpn/interface/cellular, wan/vpn/interface/ipsec, wan/vpn/interface/serial, routing/ospf, lan/vpn/interface/ethernet, lan/vpn/interface/svi, lan/vpn/interface/ipsec, lan/vpn
parcel_id str
Parcel ID
parcel_type str
Parcel type

  • Choices: wan/vpn/interface/gre, wan/vpn/interface/ethernet, wan/vpn/interface/cellular, wan/vpn/interface/ipsec, wan/vpn/interface/serial, routing/ospf, lan/vpn/interface/ethernet, lan/vpn/interface/svi, lan/vpn/interface/ipsec, lan/vpn
parcelId String
Parcel ID
parcelType String
Parcel type

  • Choices: wan/vpn/interface/gre, wan/vpn/interface/ethernet, wan/vpn/interface/cellular, wan/vpn/interface/ipsec, wan/vpn/interface/serial, routing/ospf, lan/vpn/interface/ethernet, lan/vpn/interface/svi, lan/vpn/interface/ipsec, lan/vpn

Import

$ pulumi import sdwan:index/configurationGroup:ConfigurationGroup example "f6b2c44c-693c-4763-b010-895aa3d236bd"
Copy

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

Package Details

Repository
sdwan pulumi/pulumi-sdwan
License
Apache-2.0
Notes
This Pulumi package is based on the sdwan Terraform Provider.