1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. AutoVpnCluster
Strata Cloud Manager v1.0.1 published on Wednesday, Nov 26, 2025 by Pulumi
scm logo
Strata Cloud Manager v1.0.1 published on Wednesday, Nov 26, 2025 by Pulumi

    AutoVpnCluster resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    //
    // Auto VPN Cluster Configuration
    //
    const testCluster = new scm.AutoVpnCluster("test_cluster", {
        name: "test-will-be-deleted",
        type: "hub-spoke",
        enableSdwan: true,
        gateways: [{
            name: "008199000033876",
            bgpRedistributionProfile: "All-Connected-Routes",
            priority: "1",
            logicalRouter: "untrust-logical-router",
            interfaces: [{
                name: "$mesh-interface",
                sdwanLinkSettings: {
                    sdwanInterfaceProfile: "test-sdwan-profile",
                    sdwanGateway: "$mesh-subnet-gateway-address",
                    upstreamNat: {
                        enable: false,
                    },
                },
            }],
        }],
        branches: [{
            name: "008199000033879",
            bgpRedistributionProfile: "All-Connected-Routes",
            logicalRouter: "trust-logical-router",
            interfaces: [{
                name: "$trust-interface",
                sdwanLinkSettings: {
                    sdwanInterfaceProfile: "test-sdwan-profile",
                    upstreamNat: {
                        enable: true,
                        staticIp: {
                            ipAddress: "$trust-subnet-gateway-address",
                        },
                    },
                },
            }],
        }],
    });
    
    import pulumi
    import pulumi_scm as scm
    
    #
    # Auto VPN Cluster Configuration
    #
    test_cluster = scm.AutoVpnCluster("test_cluster",
        name="test-will-be-deleted",
        type="hub-spoke",
        enable_sdwan=True,
        gateways=[{
            "name": "008199000033876",
            "bgp_redistribution_profile": "All-Connected-Routes",
            "priority": "1",
            "logical_router": "untrust-logical-router",
            "interfaces": [{
                "name": "$mesh-interface",
                "sdwan_link_settings": {
                    "sdwan_interface_profile": "test-sdwan-profile",
                    "sdwan_gateway": "$mesh-subnet-gateway-address",
                    "upstream_nat": {
                        "enable": False,
                    },
                },
            }],
        }],
        branches=[{
            "name": "008199000033879",
            "bgp_redistribution_profile": "All-Connected-Routes",
            "logical_router": "trust-logical-router",
            "interfaces": [{
                "name": "$trust-interface",
                "sdwan_link_settings": {
                    "sdwan_interface_profile": "test-sdwan-profile",
                    "upstream_nat": {
                        "enable": True,
                        "static_ip": {
                            "ip_address": "$trust-subnet-gateway-address",
                        },
                    },
                },
            }],
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-scm/sdk/go/scm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Auto VPN Cluster Configuration
    		_, err := scm.NewAutoVpnCluster(ctx, "test_cluster", &scm.AutoVpnClusterArgs{
    			Name:        pulumi.String("test-will-be-deleted"),
    			Type:        pulumi.String("hub-spoke"),
    			EnableSdwan: pulumi.Bool(true),
    			Gateways: scm.AutoVpnClusterGatewayArray{
    				&scm.AutoVpnClusterGatewayArgs{
    					Name:                     pulumi.String("008199000033876"),
    					BgpRedistributionProfile: pulumi.String("All-Connected-Routes"),
    					Priority:                 pulumi.String("1"),
    					LogicalRouter:            pulumi.String("untrust-logical-router"),
    					Interfaces: scm.AutoVpnClusterGatewayInterfaceArray{
    						&scm.AutoVpnClusterGatewayInterfaceArgs{
    							Name: pulumi.String("$mesh-interface"),
    							SdwanLinkSettings: &scm.AutoVpnClusterGatewayInterfaceSdwanLinkSettingsArgs{
    								SdwanInterfaceProfile: pulumi.String("test-sdwan-profile"),
    								SdwanGateway:          pulumi.String("$mesh-subnet-gateway-address"),
    								UpstreamNat: &scm.AutoVpnClusterGatewayInterfaceSdwanLinkSettingsUpstreamNatArgs{
    									Enable: pulumi.Bool(false),
    								},
    							},
    						},
    					},
    				},
    			},
    			Branches: scm.AutoVpnClusterBranchArray{
    				&scm.AutoVpnClusterBranchArgs{
    					Name:                     pulumi.String("008199000033879"),
    					BgpRedistributionProfile: pulumi.String("All-Connected-Routes"),
    					LogicalRouter:            pulumi.String("trust-logical-router"),
    					Interfaces: scm.AutoVpnClusterBranchInterfaceArray{
    						&scm.AutoVpnClusterBranchInterfaceArgs{
    							Name: pulumi.String("$trust-interface"),
    							SdwanLinkSettings: &scm.AutoVpnClusterBranchInterfaceSdwanLinkSettingsArgs{
    								SdwanInterfaceProfile: pulumi.String("test-sdwan-profile"),
    								UpstreamNat: &scm.AutoVpnClusterBranchInterfaceSdwanLinkSettingsUpstreamNatArgs{
    									Enable: pulumi.Bool(true),
    									StaticIp: &scm.AutoVpnClusterBranchInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs{
    										IpAddress: pulumi.String("$trust-subnet-gateway-address"),
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        //
        // Auto VPN Cluster Configuration
        //
        var testCluster = new Scm.AutoVpnCluster("test_cluster", new()
        {
            Name = "test-will-be-deleted",
            Type = "hub-spoke",
            EnableSdwan = true,
            Gateways = new[]
            {
                new Scm.Inputs.AutoVpnClusterGatewayArgs
                {
                    Name = "008199000033876",
                    BgpRedistributionProfile = "All-Connected-Routes",
                    Priority = "1",
                    LogicalRouter = "untrust-logical-router",
                    Interfaces = new[]
                    {
                        new Scm.Inputs.AutoVpnClusterGatewayInterfaceArgs
                        {
                            Name = "$mesh-interface",
                            SdwanLinkSettings = new Scm.Inputs.AutoVpnClusterGatewayInterfaceSdwanLinkSettingsArgs
                            {
                                SdwanInterfaceProfile = "test-sdwan-profile",
                                SdwanGateway = "$mesh-subnet-gateway-address",
                                UpstreamNat = new Scm.Inputs.AutoVpnClusterGatewayInterfaceSdwanLinkSettingsUpstreamNatArgs
                                {
                                    Enable = false,
                                },
                            },
                        },
                    },
                },
            },
            Branches = new[]
            {
                new Scm.Inputs.AutoVpnClusterBranchArgs
                {
                    Name = "008199000033879",
                    BgpRedistributionProfile = "All-Connected-Routes",
                    LogicalRouter = "trust-logical-router",
                    Interfaces = new[]
                    {
                        new Scm.Inputs.AutoVpnClusterBranchInterfaceArgs
                        {
                            Name = "$trust-interface",
                            SdwanLinkSettings = new Scm.Inputs.AutoVpnClusterBranchInterfaceSdwanLinkSettingsArgs
                            {
                                SdwanInterfaceProfile = "test-sdwan-profile",
                                UpstreamNat = new Scm.Inputs.AutoVpnClusterBranchInterfaceSdwanLinkSettingsUpstreamNatArgs
                                {
                                    Enable = true,
                                    StaticIp = new Scm.Inputs.AutoVpnClusterBranchInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs
                                    {
                                        IpAddress = "$trust-subnet-gateway-address",
                                    },
                                },
                            },
                        },
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.AutoVpnCluster;
    import com.pulumi.scm.AutoVpnClusterArgs;
    import com.pulumi.scm.inputs.AutoVpnClusterGatewayArgs;
    import com.pulumi.scm.inputs.AutoVpnClusterBranchArgs;
    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) {
            //
            // Auto VPN Cluster Configuration
            //
            var testCluster = new AutoVpnCluster("testCluster", AutoVpnClusterArgs.builder()
                .name("test-will-be-deleted")
                .type("hub-spoke")
                .enableSdwan(true)
                .gateways(AutoVpnClusterGatewayArgs.builder()
                    .name("008199000033876")
                    .bgpRedistributionProfile("All-Connected-Routes")
                    .priority("1")
                    .logicalRouter("untrust-logical-router")
                    .interfaces(AutoVpnClusterGatewayInterfaceArgs.builder()
                        .name("$mesh-interface")
                        .sdwanLinkSettings(AutoVpnClusterGatewayInterfaceSdwanLinkSettingsArgs.builder()
                            .sdwanInterfaceProfile("test-sdwan-profile")
                            .sdwanGateway("$mesh-subnet-gateway-address")
                            .upstreamNat(AutoVpnClusterGatewayInterfaceSdwanLinkSettingsUpstreamNatArgs.builder()
                                .enable(false)
                                .build())
                            .build())
                        .build())
                    .build())
                .branches(AutoVpnClusterBranchArgs.builder()
                    .name("008199000033879")
                    .bgpRedistributionProfile("All-Connected-Routes")
                    .logicalRouter("trust-logical-router")
                    .interfaces(AutoVpnClusterBranchInterfaceArgs.builder()
                        .name("$trust-interface")
                        .sdwanLinkSettings(AutoVpnClusterBranchInterfaceSdwanLinkSettingsArgs.builder()
                            .sdwanInterfaceProfile("test-sdwan-profile")
                            .upstreamNat(AutoVpnClusterBranchInterfaceSdwanLinkSettingsUpstreamNatArgs.builder()
                                .enable(true)
                                .staticIp(AutoVpnClusterBranchInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs.builder()
                                    .ipAddress("$trust-subnet-gateway-address")
                                    .build())
                                .build())
                            .build())
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      #
      # Auto VPN Cluster Configuration
      #
      testCluster:
        type: scm:AutoVpnCluster
        name: test_cluster
        properties:
          name: test-will-be-deleted
          type: hub-spoke
          enableSdwan: true #
          #   # Gateway Configuration (Hub)
          #   #
          gateways:
            - name: '008199000033876'
              bgpRedistributionProfile: All-Connected-Routes
              priority: 1
              logicalRouter: untrust-logical-router
              interfaces:
                - name: $mesh-interface
                  sdwanLinkSettings:
                    sdwanInterfaceProfile: test-sdwan-profile
                    sdwanGateway: $mesh-subnet-gateway-address
                    upstreamNat:
                      enable: false
          branches:
            - name: '008199000033879'
              bgpRedistributionProfile: All-Connected-Routes
              logicalRouter: trust-logical-router
              interfaces:
                - name: $trust-interface
                  sdwanLinkSettings:
                    sdwanInterfaceProfile: test-sdwan-profile
                    upstreamNat:
                      enable: true
                      staticIp:
                        ipAddress: $trust-subnet-gateway-address
    

    Create AutoVpnCluster Resource

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

    Constructor syntax

    new AutoVpnCluster(name: string, args?: AutoVpnClusterArgs, opts?: CustomResourceOptions);
    @overload
    def AutoVpnCluster(resource_name: str,
                       args: Optional[AutoVpnClusterArgs] = None,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def AutoVpnCluster(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       branches: Optional[Sequence[AutoVpnClusterBranchArgs]] = None,
                       enable_mesh_between_hubs: Optional[bool] = None,
                       enable_mesh_interconnect: Optional[bool] = None,
                       enable_sdwan: Optional[bool] = None,
                       gateways: Optional[Sequence[AutoVpnClusterGatewayArgs]] = None,
                       name: Optional[str] = None,
                       type: Optional[str] = None)
    func NewAutoVpnCluster(ctx *Context, name string, args *AutoVpnClusterArgs, opts ...ResourceOption) (*AutoVpnCluster, error)
    public AutoVpnCluster(string name, AutoVpnClusterArgs? args = null, CustomResourceOptions? opts = null)
    public AutoVpnCluster(String name, AutoVpnClusterArgs args)
    public AutoVpnCluster(String name, AutoVpnClusterArgs args, CustomResourceOptions options)
    
    type: scm:AutoVpnCluster
    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 AutoVpnClusterArgs
    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 AutoVpnClusterArgs
    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 AutoVpnClusterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AutoVpnClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AutoVpnClusterArgs
    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 autoVpnClusterResource = new Scm.AutoVpnCluster("autoVpnClusterResource", new()
    {
        Branches = new[]
        {
            new Scm.Inputs.AutoVpnClusterBranchArgs
            {
                BgpRedistributionProfile = "string",
                Interfaces = new[]
                {
                    new Scm.Inputs.AutoVpnClusterBranchInterfaceArgs
                    {
                        DhcpIp = "string",
                        Name = "string",
                        SdwanLinkSettings = new Scm.Inputs.AutoVpnClusterBranchInterfaceSdwanLinkSettingsArgs
                        {
                            SdwanGateway = "string",
                            SdwanInterfaceProfile = "string",
                            UpstreamNat = new Scm.Inputs.AutoVpnClusterBranchInterfaceSdwanLinkSettingsUpstreamNatArgs
                            {
                                Enable = false,
                                StaticIp = new Scm.Inputs.AutoVpnClusterBranchInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs
                                {
                                    Fqdn = "string",
                                    IpAddress = "string",
                                },
                            },
                        },
                    },
                },
                LogicalRouter = "string",
                Name = "string",
                PrivateInterfaces = new[]
                {
                    new Scm.Inputs.AutoVpnClusterBranchPrivateInterfaceArgs
                    {
                        Name = "string",
                        SdwanLinkSettings = new Scm.Inputs.AutoVpnClusterBranchPrivateInterfaceSdwanLinkSettingsArgs
                        {
                            SdwanGateway = "string",
                            SdwanInterfaceProfile = "string",
                            UpstreamNat = new Scm.Inputs.AutoVpnClusterBranchPrivateInterfaceSdwanLinkSettingsUpstreamNatArgs
                            {
                                Enable = false,
                                StaticIp = new Scm.Inputs.AutoVpnClusterBranchPrivateInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs
                                {
                                    Fqdn = "string",
                                    IpAddress = "string",
                                },
                            },
                        },
                    },
                },
                Site = "string",
            },
        },
        EnableMeshBetweenHubs = false,
        EnableMeshInterconnect = false,
        EnableSdwan = false,
        Gateways = new[]
        {
            new Scm.Inputs.AutoVpnClusterGatewayArgs
            {
                AllowDiaVpnFailover = false,
                BgpRedistributionProfile = "string",
                Interfaces = new[]
                {
                    new Scm.Inputs.AutoVpnClusterGatewayInterfaceArgs
                    {
                        DhcpIp = "string",
                        Name = "string",
                        SdwanLinkSettings = new Scm.Inputs.AutoVpnClusterGatewayInterfaceSdwanLinkSettingsArgs
                        {
                            SdwanGateway = "string",
                            SdwanInterfaceProfile = "string",
                            UpstreamNat = new Scm.Inputs.AutoVpnClusterGatewayInterfaceSdwanLinkSettingsUpstreamNatArgs
                            {
                                Enable = false,
                                StaticIp = new Scm.Inputs.AutoVpnClusterGatewayInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs
                                {
                                    Fqdn = "string",
                                    IpAddress = "string",
                                },
                            },
                        },
                    },
                },
                LogicalRouter = "string",
                Name = "string",
                Priority = "string",
                PrivateInterfaces = new[]
                {
                    new Scm.Inputs.AutoVpnClusterGatewayPrivateInterfaceArgs
                    {
                        Name = "string",
                        SdwanLinkSettings = new Scm.Inputs.AutoVpnClusterGatewayPrivateInterfaceSdwanLinkSettingsArgs
                        {
                            SdwanGateway = "string",
                            SdwanInterfaceProfile = "string",
                            UpstreamNat = new Scm.Inputs.AutoVpnClusterGatewayPrivateInterfaceSdwanLinkSettingsUpstreamNatArgs
                            {
                                Enable = false,
                                StaticIp = new Scm.Inputs.AutoVpnClusterGatewayPrivateInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs
                                {
                                    Fqdn = "string",
                                    IpAddress = "string",
                                },
                            },
                        },
                    },
                },
                Site = "string",
            },
        },
        Name = "string",
        Type = "string",
    });
    
    example, err := scm.NewAutoVpnCluster(ctx, "autoVpnClusterResource", &scm.AutoVpnClusterArgs{
    	Branches: scm.AutoVpnClusterBranchArray{
    		&scm.AutoVpnClusterBranchArgs{
    			BgpRedistributionProfile: pulumi.String("string"),
    			Interfaces: scm.AutoVpnClusterBranchInterfaceArray{
    				&scm.AutoVpnClusterBranchInterfaceArgs{
    					DhcpIp: pulumi.String("string"),
    					Name:   pulumi.String("string"),
    					SdwanLinkSettings: &scm.AutoVpnClusterBranchInterfaceSdwanLinkSettingsArgs{
    						SdwanGateway:          pulumi.String("string"),
    						SdwanInterfaceProfile: pulumi.String("string"),
    						UpstreamNat: &scm.AutoVpnClusterBranchInterfaceSdwanLinkSettingsUpstreamNatArgs{
    							Enable: pulumi.Bool(false),
    							StaticIp: &scm.AutoVpnClusterBranchInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs{
    								Fqdn:      pulumi.String("string"),
    								IpAddress: pulumi.String("string"),
    							},
    						},
    					},
    				},
    			},
    			LogicalRouter: pulumi.String("string"),
    			Name:          pulumi.String("string"),
    			PrivateInterfaces: scm.AutoVpnClusterBranchPrivateInterfaceArray{
    				&scm.AutoVpnClusterBranchPrivateInterfaceArgs{
    					Name: pulumi.String("string"),
    					SdwanLinkSettings: &scm.AutoVpnClusterBranchPrivateInterfaceSdwanLinkSettingsArgs{
    						SdwanGateway:          pulumi.String("string"),
    						SdwanInterfaceProfile: pulumi.String("string"),
    						UpstreamNat: &scm.AutoVpnClusterBranchPrivateInterfaceSdwanLinkSettingsUpstreamNatArgs{
    							Enable: pulumi.Bool(false),
    							StaticIp: &scm.AutoVpnClusterBranchPrivateInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs{
    								Fqdn:      pulumi.String("string"),
    								IpAddress: pulumi.String("string"),
    							},
    						},
    					},
    				},
    			},
    			Site: pulumi.String("string"),
    		},
    	},
    	EnableMeshBetweenHubs:  pulumi.Bool(false),
    	EnableMeshInterconnect: pulumi.Bool(false),
    	EnableSdwan:            pulumi.Bool(false),
    	Gateways: scm.AutoVpnClusterGatewayArray{
    		&scm.AutoVpnClusterGatewayArgs{
    			AllowDiaVpnFailover:      pulumi.Bool(false),
    			BgpRedistributionProfile: pulumi.String("string"),
    			Interfaces: scm.AutoVpnClusterGatewayInterfaceArray{
    				&scm.AutoVpnClusterGatewayInterfaceArgs{
    					DhcpIp: pulumi.String("string"),
    					Name:   pulumi.String("string"),
    					SdwanLinkSettings: &scm.AutoVpnClusterGatewayInterfaceSdwanLinkSettingsArgs{
    						SdwanGateway:          pulumi.String("string"),
    						SdwanInterfaceProfile: pulumi.String("string"),
    						UpstreamNat: &scm.AutoVpnClusterGatewayInterfaceSdwanLinkSettingsUpstreamNatArgs{
    							Enable: pulumi.Bool(false),
    							StaticIp: &scm.AutoVpnClusterGatewayInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs{
    								Fqdn:      pulumi.String("string"),
    								IpAddress: pulumi.String("string"),
    							},
    						},
    					},
    				},
    			},
    			LogicalRouter: pulumi.String("string"),
    			Name:          pulumi.String("string"),
    			Priority:      pulumi.String("string"),
    			PrivateInterfaces: scm.AutoVpnClusterGatewayPrivateInterfaceArray{
    				&scm.AutoVpnClusterGatewayPrivateInterfaceArgs{
    					Name: pulumi.String("string"),
    					SdwanLinkSettings: &scm.AutoVpnClusterGatewayPrivateInterfaceSdwanLinkSettingsArgs{
    						SdwanGateway:          pulumi.String("string"),
    						SdwanInterfaceProfile: pulumi.String("string"),
    						UpstreamNat: &scm.AutoVpnClusterGatewayPrivateInterfaceSdwanLinkSettingsUpstreamNatArgs{
    							Enable: pulumi.Bool(false),
    							StaticIp: &scm.AutoVpnClusterGatewayPrivateInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs{
    								Fqdn:      pulumi.String("string"),
    								IpAddress: pulumi.String("string"),
    							},
    						},
    					},
    				},
    			},
    			Site: pulumi.String("string"),
    		},
    	},
    	Name: pulumi.String("string"),
    	Type: pulumi.String("string"),
    })
    
    var autoVpnClusterResource = new AutoVpnCluster("autoVpnClusterResource", AutoVpnClusterArgs.builder()
        .branches(AutoVpnClusterBranchArgs.builder()
            .bgpRedistributionProfile("string")
            .interfaces(AutoVpnClusterBranchInterfaceArgs.builder()
                .dhcpIp("string")
                .name("string")
                .sdwanLinkSettings(AutoVpnClusterBranchInterfaceSdwanLinkSettingsArgs.builder()
                    .sdwanGateway("string")
                    .sdwanInterfaceProfile("string")
                    .upstreamNat(AutoVpnClusterBranchInterfaceSdwanLinkSettingsUpstreamNatArgs.builder()
                        .enable(false)
                        .staticIp(AutoVpnClusterBranchInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs.builder()
                            .fqdn("string")
                            .ipAddress("string")
                            .build())
                        .build())
                    .build())
                .build())
            .logicalRouter("string")
            .name("string")
            .privateInterfaces(AutoVpnClusterBranchPrivateInterfaceArgs.builder()
                .name("string")
                .sdwanLinkSettings(AutoVpnClusterBranchPrivateInterfaceSdwanLinkSettingsArgs.builder()
                    .sdwanGateway("string")
                    .sdwanInterfaceProfile("string")
                    .upstreamNat(AutoVpnClusterBranchPrivateInterfaceSdwanLinkSettingsUpstreamNatArgs.builder()
                        .enable(false)
                        .staticIp(AutoVpnClusterBranchPrivateInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs.builder()
                            .fqdn("string")
                            .ipAddress("string")
                            .build())
                        .build())
                    .build())
                .build())
            .site("string")
            .build())
        .enableMeshBetweenHubs(false)
        .enableMeshInterconnect(false)
        .enableSdwan(false)
        .gateways(AutoVpnClusterGatewayArgs.builder()
            .allowDiaVpnFailover(false)
            .bgpRedistributionProfile("string")
            .interfaces(AutoVpnClusterGatewayInterfaceArgs.builder()
                .dhcpIp("string")
                .name("string")
                .sdwanLinkSettings(AutoVpnClusterGatewayInterfaceSdwanLinkSettingsArgs.builder()
                    .sdwanGateway("string")
                    .sdwanInterfaceProfile("string")
                    .upstreamNat(AutoVpnClusterGatewayInterfaceSdwanLinkSettingsUpstreamNatArgs.builder()
                        .enable(false)
                        .staticIp(AutoVpnClusterGatewayInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs.builder()
                            .fqdn("string")
                            .ipAddress("string")
                            .build())
                        .build())
                    .build())
                .build())
            .logicalRouter("string")
            .name("string")
            .priority("string")
            .privateInterfaces(AutoVpnClusterGatewayPrivateInterfaceArgs.builder()
                .name("string")
                .sdwanLinkSettings(AutoVpnClusterGatewayPrivateInterfaceSdwanLinkSettingsArgs.builder()
                    .sdwanGateway("string")
                    .sdwanInterfaceProfile("string")
                    .upstreamNat(AutoVpnClusterGatewayPrivateInterfaceSdwanLinkSettingsUpstreamNatArgs.builder()
                        .enable(false)
                        .staticIp(AutoVpnClusterGatewayPrivateInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs.builder()
                            .fqdn("string")
                            .ipAddress("string")
                            .build())
                        .build())
                    .build())
                .build())
            .site("string")
            .build())
        .name("string")
        .type("string")
        .build());
    
    auto_vpn_cluster_resource = scm.AutoVpnCluster("autoVpnClusterResource",
        branches=[{
            "bgp_redistribution_profile": "string",
            "interfaces": [{
                "dhcp_ip": "string",
                "name": "string",
                "sdwan_link_settings": {
                    "sdwan_gateway": "string",
                    "sdwan_interface_profile": "string",
                    "upstream_nat": {
                        "enable": False,
                        "static_ip": {
                            "fqdn": "string",
                            "ip_address": "string",
                        },
                    },
                },
            }],
            "logical_router": "string",
            "name": "string",
            "private_interfaces": [{
                "name": "string",
                "sdwan_link_settings": {
                    "sdwan_gateway": "string",
                    "sdwan_interface_profile": "string",
                    "upstream_nat": {
                        "enable": False,
                        "static_ip": {
                            "fqdn": "string",
                            "ip_address": "string",
                        },
                    },
                },
            }],
            "site": "string",
        }],
        enable_mesh_between_hubs=False,
        enable_mesh_interconnect=False,
        enable_sdwan=False,
        gateways=[{
            "allow_dia_vpn_failover": False,
            "bgp_redistribution_profile": "string",
            "interfaces": [{
                "dhcp_ip": "string",
                "name": "string",
                "sdwan_link_settings": {
                    "sdwan_gateway": "string",
                    "sdwan_interface_profile": "string",
                    "upstream_nat": {
                        "enable": False,
                        "static_ip": {
                            "fqdn": "string",
                            "ip_address": "string",
                        },
                    },
                },
            }],
            "logical_router": "string",
            "name": "string",
            "priority": "string",
            "private_interfaces": [{
                "name": "string",
                "sdwan_link_settings": {
                    "sdwan_gateway": "string",
                    "sdwan_interface_profile": "string",
                    "upstream_nat": {
                        "enable": False,
                        "static_ip": {
                            "fqdn": "string",
                            "ip_address": "string",
                        },
                    },
                },
            }],
            "site": "string",
        }],
        name="string",
        type="string")
    
    const autoVpnClusterResource = new scm.AutoVpnCluster("autoVpnClusterResource", {
        branches: [{
            bgpRedistributionProfile: "string",
            interfaces: [{
                dhcpIp: "string",
                name: "string",
                sdwanLinkSettings: {
                    sdwanGateway: "string",
                    sdwanInterfaceProfile: "string",
                    upstreamNat: {
                        enable: false,
                        staticIp: {
                            fqdn: "string",
                            ipAddress: "string",
                        },
                    },
                },
            }],
            logicalRouter: "string",
            name: "string",
            privateInterfaces: [{
                name: "string",
                sdwanLinkSettings: {
                    sdwanGateway: "string",
                    sdwanInterfaceProfile: "string",
                    upstreamNat: {
                        enable: false,
                        staticIp: {
                            fqdn: "string",
                            ipAddress: "string",
                        },
                    },
                },
            }],
            site: "string",
        }],
        enableMeshBetweenHubs: false,
        enableMeshInterconnect: false,
        enableSdwan: false,
        gateways: [{
            allowDiaVpnFailover: false,
            bgpRedistributionProfile: "string",
            interfaces: [{
                dhcpIp: "string",
                name: "string",
                sdwanLinkSettings: {
                    sdwanGateway: "string",
                    sdwanInterfaceProfile: "string",
                    upstreamNat: {
                        enable: false,
                        staticIp: {
                            fqdn: "string",
                            ipAddress: "string",
                        },
                    },
                },
            }],
            logicalRouter: "string",
            name: "string",
            priority: "string",
            privateInterfaces: [{
                name: "string",
                sdwanLinkSettings: {
                    sdwanGateway: "string",
                    sdwanInterfaceProfile: "string",
                    upstreamNat: {
                        enable: false,
                        staticIp: {
                            fqdn: "string",
                            ipAddress: "string",
                        },
                    },
                },
            }],
            site: "string",
        }],
        name: "string",
        type: "string",
    });
    
    type: scm:AutoVpnCluster
    properties:
        branches:
            - bgpRedistributionProfile: string
              interfaces:
                - dhcpIp: string
                  name: string
                  sdwanLinkSettings:
                    sdwanGateway: string
                    sdwanInterfaceProfile: string
                    upstreamNat:
                        enable: false
                        staticIp:
                            fqdn: string
                            ipAddress: string
              logicalRouter: string
              name: string
              privateInterfaces:
                - name: string
                  sdwanLinkSettings:
                    sdwanGateway: string
                    sdwanInterfaceProfile: string
                    upstreamNat:
                        enable: false
                        staticIp:
                            fqdn: string
                            ipAddress: string
              site: string
        enableMeshBetweenHubs: false
        enableMeshInterconnect: false
        enableSdwan: false
        gateways:
            - allowDiaVpnFailover: false
              bgpRedistributionProfile: string
              interfaces:
                - dhcpIp: string
                  name: string
                  sdwanLinkSettings:
                    sdwanGateway: string
                    sdwanInterfaceProfile: string
                    upstreamNat:
                        enable: false
                        staticIp:
                            fqdn: string
                            ipAddress: string
              logicalRouter: string
              name: string
              priority: string
              privateInterfaces:
                - name: string
                  sdwanLinkSettings:
                    sdwanGateway: string
                    sdwanInterfaceProfile: string
                    upstreamNat:
                        enable: false
                        staticIp:
                            fqdn: string
                            ipAddress: string
              site: string
        name: string
        type: string
    

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

    Branches List<AutoVpnClusterBranch>
    Branches
    EnableMeshBetweenHubs bool
    Enable mesh between hubs?
    EnableMeshInterconnect bool
    Enable mesh interconnect?
    EnableSdwan bool
    Enable SD-WAN?
    Gateways List<AutoVpnClusterGateway>
    Hubs
    Name string
    VPN cluster name
    Type string
    VPN cluster type
    Branches []AutoVpnClusterBranchArgs
    Branches
    EnableMeshBetweenHubs bool
    Enable mesh between hubs?
    EnableMeshInterconnect bool
    Enable mesh interconnect?
    EnableSdwan bool
    Enable SD-WAN?
    Gateways []AutoVpnClusterGatewayArgs
    Hubs
    Name string
    VPN cluster name
    Type string
    VPN cluster type
    branches List<AutoVpnClusterBranch>
    Branches
    enableMeshBetweenHubs Boolean
    Enable mesh between hubs?
    enableMeshInterconnect Boolean
    Enable mesh interconnect?
    enableSdwan Boolean
    Enable SD-WAN?
    gateways List<AutoVpnClusterGateway>
    Hubs
    name String
    VPN cluster name
    type String
    VPN cluster type
    branches AutoVpnClusterBranch[]
    Branches
    enableMeshBetweenHubs boolean
    Enable mesh between hubs?
    enableMeshInterconnect boolean
    Enable mesh interconnect?
    enableSdwan boolean
    Enable SD-WAN?
    gateways AutoVpnClusterGateway[]
    Hubs
    name string
    VPN cluster name
    type string
    VPN cluster type
    branches Sequence[AutoVpnClusterBranchArgs]
    Branches
    enable_mesh_between_hubs bool
    Enable mesh between hubs?
    enable_mesh_interconnect bool
    Enable mesh interconnect?
    enable_sdwan bool
    Enable SD-WAN?
    gateways Sequence[AutoVpnClusterGatewayArgs]
    Hubs
    name str
    VPN cluster name
    type str
    VPN cluster type
    branches List<Property Map>
    Branches
    enableMeshBetweenHubs Boolean
    Enable mesh between hubs?
    enableMeshInterconnect Boolean
    Enable mesh interconnect?
    enableSdwan Boolean
    Enable SD-WAN?
    gateways List<Property Map>
    Hubs
    name String
    VPN cluster name
    type String
    VPN cluster type

    Outputs

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

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

    Look up Existing AutoVpnCluster Resource

    Get an existing AutoVpnCluster 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?: AutoVpnClusterState, opts?: CustomResourceOptions): AutoVpnCluster
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            branches: Optional[Sequence[AutoVpnClusterBranchArgs]] = None,
            enable_mesh_between_hubs: Optional[bool] = None,
            enable_mesh_interconnect: Optional[bool] = None,
            enable_sdwan: Optional[bool] = None,
            gateways: Optional[Sequence[AutoVpnClusterGatewayArgs]] = None,
            name: Optional[str] = None,
            tfid: Optional[str] = None,
            type: Optional[str] = None) -> AutoVpnCluster
    func GetAutoVpnCluster(ctx *Context, name string, id IDInput, state *AutoVpnClusterState, opts ...ResourceOption) (*AutoVpnCluster, error)
    public static AutoVpnCluster Get(string name, Input<string> id, AutoVpnClusterState? state, CustomResourceOptions? opts = null)
    public static AutoVpnCluster get(String name, Output<String> id, AutoVpnClusterState state, CustomResourceOptions options)
    resources:  _:    type: scm:AutoVpnCluster    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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:
    Branches List<AutoVpnClusterBranch>
    Branches
    EnableMeshBetweenHubs bool
    Enable mesh between hubs?
    EnableMeshInterconnect bool
    Enable mesh interconnect?
    EnableSdwan bool
    Enable SD-WAN?
    Gateways List<AutoVpnClusterGateway>
    Hubs
    Name string
    VPN cluster name
    Tfid string
    Type string
    VPN cluster type
    Branches []AutoVpnClusterBranchArgs
    Branches
    EnableMeshBetweenHubs bool
    Enable mesh between hubs?
    EnableMeshInterconnect bool
    Enable mesh interconnect?
    EnableSdwan bool
    Enable SD-WAN?
    Gateways []AutoVpnClusterGatewayArgs
    Hubs
    Name string
    VPN cluster name
    Tfid string
    Type string
    VPN cluster type
    branches List<AutoVpnClusterBranch>
    Branches
    enableMeshBetweenHubs Boolean
    Enable mesh between hubs?
    enableMeshInterconnect Boolean
    Enable mesh interconnect?
    enableSdwan Boolean
    Enable SD-WAN?
    gateways List<AutoVpnClusterGateway>
    Hubs
    name String
    VPN cluster name
    tfid String
    type String
    VPN cluster type
    branches AutoVpnClusterBranch[]
    Branches
    enableMeshBetweenHubs boolean
    Enable mesh between hubs?
    enableMeshInterconnect boolean
    Enable mesh interconnect?
    enableSdwan boolean
    Enable SD-WAN?
    gateways AutoVpnClusterGateway[]
    Hubs
    name string
    VPN cluster name
    tfid string
    type string
    VPN cluster type
    branches Sequence[AutoVpnClusterBranchArgs]
    Branches
    enable_mesh_between_hubs bool
    Enable mesh between hubs?
    enable_mesh_interconnect bool
    Enable mesh interconnect?
    enable_sdwan bool
    Enable SD-WAN?
    gateways Sequence[AutoVpnClusterGatewayArgs]
    Hubs
    name str
    VPN cluster name
    tfid str
    type str
    VPN cluster type
    branches List<Property Map>
    Branches
    enableMeshBetweenHubs Boolean
    Enable mesh between hubs?
    enableMeshInterconnect Boolean
    Enable mesh interconnect?
    enableSdwan Boolean
    Enable SD-WAN?
    gateways List<Property Map>
    Hubs
    name String
    VPN cluster name
    tfid String
    type String
    VPN cluster type

    Supporting Types

    AutoVpnClusterBranch, AutoVpnClusterBranchArgs

    BgpRedistributionProfile string
    BGP redistribution profile
    Interfaces List<AutoVpnClusterBranchInterface>
    Interfaces
    LogicalRouter string
    Router
    Name string
    Branch firewall serial number
    PrivateInterfaces List<AutoVpnClusterBranchPrivateInterface>
    Private interfaces
    Site string
    Site name
    BgpRedistributionProfile string
    BGP redistribution profile
    Interfaces []AutoVpnClusterBranchInterface
    Interfaces
    LogicalRouter string
    Router
    Name string
    Branch firewall serial number
    PrivateInterfaces []AutoVpnClusterBranchPrivateInterface
    Private interfaces
    Site string
    Site name
    bgpRedistributionProfile String
    BGP redistribution profile
    interfaces List<AutoVpnClusterBranchInterface>
    Interfaces
    logicalRouter String
    Router
    name String
    Branch firewall serial number
    privateInterfaces List<AutoVpnClusterBranchPrivateInterface>
    Private interfaces
    site String
    Site name
    bgpRedistributionProfile string
    BGP redistribution profile
    interfaces AutoVpnClusterBranchInterface[]
    Interfaces
    logicalRouter string
    Router
    name string
    Branch firewall serial number
    privateInterfaces AutoVpnClusterBranchPrivateInterface[]
    Private interfaces
    site string
    Site name
    bgp_redistribution_profile str
    BGP redistribution profile
    interfaces Sequence[AutoVpnClusterBranchInterface]
    Interfaces
    logical_router str
    Router
    name str
    Branch firewall serial number
    private_interfaces Sequence[AutoVpnClusterBranchPrivateInterface]
    Private interfaces
    site str
    Site name
    bgpRedistributionProfile String
    BGP redistribution profile
    interfaces List<Property Map>
    Interfaces
    logicalRouter String
    Router
    name String
    Branch firewall serial number
    privateInterfaces List<Property Map>
    Private interfaces
    site String
    Site name

    AutoVpnClusterBranchInterface, AutoVpnClusterBranchInterfaceArgs

    DhcpIp string
    DHCP IP
    Name string
    Ethernet interface
    SdwanLinkSettings AutoVpnClusterBranchInterfaceSdwanLinkSettings
    Sdwan link settings
    DhcpIp string
    DHCP IP
    Name string
    Ethernet interface
    SdwanLinkSettings AutoVpnClusterBranchInterfaceSdwanLinkSettings
    Sdwan link settings
    dhcpIp String
    DHCP IP
    name String
    Ethernet interface
    sdwanLinkSettings AutoVpnClusterBranchInterfaceSdwanLinkSettings
    Sdwan link settings
    dhcpIp string
    DHCP IP
    name string
    Ethernet interface
    sdwanLinkSettings AutoVpnClusterBranchInterfaceSdwanLinkSettings
    Sdwan link settings
    dhcp_ip str
    DHCP IP
    name str
    Ethernet interface
    sdwan_link_settings AutoVpnClusterBranchInterfaceSdwanLinkSettings
    Sdwan link settings
    dhcpIp String
    DHCP IP
    name String
    Ethernet interface
    sdwanLinkSettings Property Map
    Sdwan link settings

    AutoVpnClusterBranchInterfaceSdwanLinkSettings, AutoVpnClusterBranchInterfaceSdwanLinkSettingsArgs

    sdwanGateway String
    Next hop gateway
    sdwanInterfaceProfile String
    SD-WAN interface profile
    upstreamNat Property Map
    Upstream nat

    AutoVpnClusterBranchInterfaceSdwanLinkSettingsUpstreamNat, AutoVpnClusterBranchInterfaceSdwanLinkSettingsUpstreamNatArgs

    enable Boolean
    Upstream NAT?
    staticIp Property Map
    Static ip

    AutoVpnClusterBranchInterfaceSdwanLinkSettingsUpstreamNatStaticIp, AutoVpnClusterBranchInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs

    Fqdn string
    FQDN
    IpAddress string

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    Fqdn string
    FQDN
    IpAddress string

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    fqdn String
    FQDN
    ipAddress String

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    fqdn string
    FQDN
    ipAddress string

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    fqdn str
    FQDN
    ip_address str

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    fqdn String
    FQDN
    ipAddress String

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    AutoVpnClusterBranchPrivateInterface, AutoVpnClusterBranchPrivateInterfaceArgs

    name String
    Ethernet interface
    sdwanLinkSettings Property Map
    Sdwan link settings

    AutoVpnClusterBranchPrivateInterfaceSdwanLinkSettings, AutoVpnClusterBranchPrivateInterfaceSdwanLinkSettingsArgs

    sdwanGateway String
    Next hop gateway
    sdwanInterfaceProfile String
    SD-WAN interface profile
    upstreamNat Property Map
    Upstream nat

    AutoVpnClusterBranchPrivateInterfaceSdwanLinkSettingsUpstreamNat, AutoVpnClusterBranchPrivateInterfaceSdwanLinkSettingsUpstreamNatArgs

    enable Boolean
    Upstream NAT?
    staticIp Property Map
    Static ip

    AutoVpnClusterBranchPrivateInterfaceSdwanLinkSettingsUpstreamNatStaticIp, AutoVpnClusterBranchPrivateInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs

    Fqdn string
    FQDN
    IpAddress string

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    Fqdn string
    FQDN
    IpAddress string

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    fqdn String
    FQDN
    ipAddress String

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    fqdn string
    FQDN
    ipAddress string

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    fqdn str
    FQDN
    ip_address str

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    fqdn String
    FQDN
    ipAddress String

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    AutoVpnClusterGateway, AutoVpnClusterGatewayArgs

    AllowDiaVpnFailover bool
    Allow DIA to VPN failover on branch device for the hub?
    BgpRedistributionProfile string
    BGP redistribution file
    Interfaces List<AutoVpnClusterGatewayInterface>
    Interfaces
    LogicalRouter string
    Router
    Name string
    Hub firewall serial number
    Priority string
    Priority
    PrivateInterfaces List<AutoVpnClusterGatewayPrivateInterface>
    Private interfaces
    Site string
    Site name
    AllowDiaVpnFailover bool
    Allow DIA to VPN failover on branch device for the hub?
    BgpRedistributionProfile string
    BGP redistribution file
    Interfaces []AutoVpnClusterGatewayInterface
    Interfaces
    LogicalRouter string
    Router
    Name string
    Hub firewall serial number
    Priority string
    Priority
    PrivateInterfaces []AutoVpnClusterGatewayPrivateInterface
    Private interfaces
    Site string
    Site name
    allowDiaVpnFailover Boolean
    Allow DIA to VPN failover on branch device for the hub?
    bgpRedistributionProfile String
    BGP redistribution file
    interfaces List<AutoVpnClusterGatewayInterface>
    Interfaces
    logicalRouter String
    Router
    name String
    Hub firewall serial number
    priority String
    Priority
    privateInterfaces List<AutoVpnClusterGatewayPrivateInterface>
    Private interfaces
    site String
    Site name
    allowDiaVpnFailover boolean
    Allow DIA to VPN failover on branch device for the hub?
    bgpRedistributionProfile string
    BGP redistribution file
    interfaces AutoVpnClusterGatewayInterface[]
    Interfaces
    logicalRouter string
    Router
    name string
    Hub firewall serial number
    priority string
    Priority
    privateInterfaces AutoVpnClusterGatewayPrivateInterface[]
    Private interfaces
    site string
    Site name
    allow_dia_vpn_failover bool
    Allow DIA to VPN failover on branch device for the hub?
    bgp_redistribution_profile str
    BGP redistribution file
    interfaces Sequence[AutoVpnClusterGatewayInterface]
    Interfaces
    logical_router str
    Router
    name str
    Hub firewall serial number
    priority str
    Priority
    private_interfaces Sequence[AutoVpnClusterGatewayPrivateInterface]
    Private interfaces
    site str
    Site name
    allowDiaVpnFailover Boolean
    Allow DIA to VPN failover on branch device for the hub?
    bgpRedistributionProfile String
    BGP redistribution file
    interfaces List<Property Map>
    Interfaces
    logicalRouter String
    Router
    name String
    Hub firewall serial number
    priority String
    Priority
    privateInterfaces List<Property Map>
    Private interfaces
    site String
    Site name

    AutoVpnClusterGatewayInterface, AutoVpnClusterGatewayInterfaceArgs

    DhcpIp string
    DHCP IP
    Name string
    Ethernet interface
    SdwanLinkSettings AutoVpnClusterGatewayInterfaceSdwanLinkSettings
    Sdwan link settings
    DhcpIp string
    DHCP IP
    Name string
    Ethernet interface
    SdwanLinkSettings AutoVpnClusterGatewayInterfaceSdwanLinkSettings
    Sdwan link settings
    dhcpIp String
    DHCP IP
    name String
    Ethernet interface
    sdwanLinkSettings AutoVpnClusterGatewayInterfaceSdwanLinkSettings
    Sdwan link settings
    dhcpIp string
    DHCP IP
    name string
    Ethernet interface
    sdwanLinkSettings AutoVpnClusterGatewayInterfaceSdwanLinkSettings
    Sdwan link settings
    dhcp_ip str
    DHCP IP
    name str
    Ethernet interface
    sdwan_link_settings AutoVpnClusterGatewayInterfaceSdwanLinkSettings
    Sdwan link settings
    dhcpIp String
    DHCP IP
    name String
    Ethernet interface
    sdwanLinkSettings Property Map
    Sdwan link settings

    AutoVpnClusterGatewayInterfaceSdwanLinkSettings, AutoVpnClusterGatewayInterfaceSdwanLinkSettingsArgs

    sdwanGateway String
    Next hop gateway
    sdwanInterfaceProfile String
    SD-WAN interface profile
    upstreamNat Property Map
    Upstream nat

    AutoVpnClusterGatewayInterfaceSdwanLinkSettingsUpstreamNat, AutoVpnClusterGatewayInterfaceSdwanLinkSettingsUpstreamNatArgs

    enable Boolean
    Upstream NAT?
    staticIp Property Map
    Static ip

    AutoVpnClusterGatewayInterfaceSdwanLinkSettingsUpstreamNatStaticIp, AutoVpnClusterGatewayInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs

    Fqdn string
    FQDN
    IpAddress string

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    Fqdn string
    FQDN
    IpAddress string

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    fqdn String
    FQDN
    ipAddress String

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    fqdn string
    FQDN
    ipAddress string

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    fqdn str
    FQDN
    ip_address str

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    fqdn String
    FQDN
    ipAddress String

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    AutoVpnClusterGatewayPrivateInterface, AutoVpnClusterGatewayPrivateInterfaceArgs

    name String
    Ethernet interface
    sdwanLinkSettings Property Map
    Sdwan link settings

    AutoVpnClusterGatewayPrivateInterfaceSdwanLinkSettings, AutoVpnClusterGatewayPrivateInterfaceSdwanLinkSettingsArgs

    sdwanGateway String
    Next hop gateway
    sdwanInterfaceProfile String
    SD-WAN interface profile
    upstreamNat Property Map
    Upstream nat

    AutoVpnClusterGatewayPrivateInterfaceSdwanLinkSettingsUpstreamNat, AutoVpnClusterGatewayPrivateInterfaceSdwanLinkSettingsUpstreamNatArgs

    enable Boolean
    Upstream NAT?
    staticIp Property Map
    Static ip

    AutoVpnClusterGatewayPrivateInterfaceSdwanLinkSettingsUpstreamNatStaticIp, AutoVpnClusterGatewayPrivateInterfaceSdwanLinkSettingsUpstreamNatStaticIpArgs

    Fqdn string
    FQDN
    IpAddress string

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    Fqdn string
    FQDN
    IpAddress string

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    fqdn String
    FQDN
    ipAddress String

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    fqdn string
    FQDN
    ipAddress string

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    fqdn str
    FQDN
    ip_address str

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    fqdn String
    FQDN
    ipAddress String

    IP address

    ℹ️ Note: You must specify exactly one of fqdn and ip_address.

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v1.0.1 published on Wednesday, Nov 26, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate