1. Packages
  2. Packages
  3. Cisco Catalyst SD-WAN Provider
  4. API Docs
  5. CloudProviderSettings
Viewing docs for Cisco Catalyst SD-WAN v0.8.2
published on Tuesday, May 19, 2026 by Pulumi
sdwan logo
Viewing docs for Cisco Catalyst SD-WAN v0.8.2
published on Tuesday, May 19, 2026 by Pulumi

    This resource can manage a Cloud Provider Settings .

    • Minimum SD-WAN Manager version: 20.15.0

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdwan from "@pulumi/sdwan";
    
    const example = new sdwan.CloudProviderSettings("example", {
        umbrellaOrgId: "123456",
        umbrellaAuthKeyV2: "aaaaaa",
        umbrellaAuthSecretV2: "$CRYPT_CLUSTER$a8nXr4uYaCN66qTQ1737+A==$gjmYVxnKMqvUEjo3BfIGbg==",
        umbrellaSigAuthKey: "bbbbbb",
        umbrellaSigAuthSecret: "secret456",
        umbrellaDnsAuthKey: "cccccc",
        umbrellaDnsAuthSecret: "secret789",
        zscalerOrganization: "z223456",
        zscalerPartnerBaseUri: "zscaler.net",
        zscalerPartnerKey: "secret012",
        zscalerUsername: "user1",
        zscalerPassword: "pass123",
        ciscoSseOrgId: "323456",
        ciscoSseAuthKey: "33333444",
        ciscoSseAuthSecret: "$CRYPT_CLUSTER$Gg4nVpFdldXga1hLKhdJrA==$hiFPirWJnqNxMq3l/m1ekw==",
        ciscoSseContextSharing: false,
    });
    
    import pulumi
    import pulumi_sdwan as sdwan
    
    example = sdwan.CloudProviderSettings("example",
        umbrella_org_id="123456",
        umbrella_auth_key_v2="aaaaaa",
        umbrella_auth_secret_v2="$CRYPT_CLUSTER$a8nXr4uYaCN66qTQ1737+A==$gjmYVxnKMqvUEjo3BfIGbg==",
        umbrella_sig_auth_key="bbbbbb",
        umbrella_sig_auth_secret="secret456",
        umbrella_dns_auth_key="cccccc",
        umbrella_dns_auth_secret="secret789",
        zscaler_organization="z223456",
        zscaler_partner_base_uri="zscaler.net",
        zscaler_partner_key="secret012",
        zscaler_username="user1",
        zscaler_password="pass123",
        cisco_sse_org_id="323456",
        cisco_sse_auth_key="33333444",
        cisco_sse_auth_secret="$CRYPT_CLUSTER$Gg4nVpFdldXga1hLKhdJrA==$hiFPirWJnqNxMq3l/m1ekw==",
        cisco_sse_context_sharing=False)
    
    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.NewCloudProviderSettings(ctx, "example", &sdwan.CloudProviderSettingsArgs{
    			UmbrellaOrgId:          pulumi.String("123456"),
    			UmbrellaAuthKeyV2:      pulumi.String("aaaaaa"),
    			UmbrellaAuthSecretV2:   pulumi.String("$CRYPT_CLUSTER$a8nXr4uYaCN66qTQ1737+A==$gjmYVxnKMqvUEjo3BfIGbg=="),
    			UmbrellaSigAuthKey:     pulumi.String("bbbbbb"),
    			UmbrellaSigAuthSecret:  pulumi.String("secret456"),
    			UmbrellaDnsAuthKey:     pulumi.String("cccccc"),
    			UmbrellaDnsAuthSecret:  pulumi.String("secret789"),
    			ZscalerOrganization:    pulumi.String("z223456"),
    			ZscalerPartnerBaseUri:  pulumi.String("zscaler.net"),
    			ZscalerPartnerKey:      pulumi.String("secret012"),
    			ZscalerUsername:        pulumi.String("user1"),
    			ZscalerPassword:        pulumi.String("pass123"),
    			CiscoSseOrgId:          pulumi.String("323456"),
    			CiscoSseAuthKey:        pulumi.String("33333444"),
    			CiscoSseAuthSecret:     pulumi.String("$CRYPT_CLUSTER$Gg4nVpFdldXga1hLKhdJrA==$hiFPirWJnqNxMq3l/m1ekw=="),
    			CiscoSseContextSharing: pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Sdwan = Pulumi.Sdwan;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Sdwan.CloudProviderSettings("example", new()
        {
            UmbrellaOrgId = "123456",
            UmbrellaAuthKeyV2 = "aaaaaa",
            UmbrellaAuthSecretV2 = "$CRYPT_CLUSTER$a8nXr4uYaCN66qTQ1737+A==$gjmYVxnKMqvUEjo3BfIGbg==",
            UmbrellaSigAuthKey = "bbbbbb",
            UmbrellaSigAuthSecret = "secret456",
            UmbrellaDnsAuthKey = "cccccc",
            UmbrellaDnsAuthSecret = "secret789",
            ZscalerOrganization = "z223456",
            ZscalerPartnerBaseUri = "zscaler.net",
            ZscalerPartnerKey = "secret012",
            ZscalerUsername = "user1",
            ZscalerPassword = "pass123",
            CiscoSseOrgId = "323456",
            CiscoSseAuthKey = "33333444",
            CiscoSseAuthSecret = "$CRYPT_CLUSTER$Gg4nVpFdldXga1hLKhdJrA==$hiFPirWJnqNxMq3l/m1ekw==",
            CiscoSseContextSharing = false,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.CloudProviderSettings;
    import com.pulumi.sdwan.CloudProviderSettingsArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 CloudProviderSettings("example", CloudProviderSettingsArgs.builder()
                .umbrellaOrgId("123456")
                .umbrellaAuthKeyV2("aaaaaa")
                .umbrellaAuthSecretV2("$CRYPT_CLUSTER$a8nXr4uYaCN66qTQ1737+A==$gjmYVxnKMqvUEjo3BfIGbg==")
                .umbrellaSigAuthKey("bbbbbb")
                .umbrellaSigAuthSecret("secret456")
                .umbrellaDnsAuthKey("cccccc")
                .umbrellaDnsAuthSecret("secret789")
                .zscalerOrganization("z223456")
                .zscalerPartnerBaseUri("zscaler.net")
                .zscalerPartnerKey("secret012")
                .zscalerUsername("user1")
                .zscalerPassword("pass123")
                .ciscoSseOrgId("323456")
                .ciscoSseAuthKey("33333444")
                .ciscoSseAuthSecret("$CRYPT_CLUSTER$Gg4nVpFdldXga1hLKhdJrA==$hiFPirWJnqNxMq3l/m1ekw==")
                .ciscoSseContextSharing(false)
                .build());
    
        }
    }
    
    resources:
      example:
        type: sdwan:CloudProviderSettings
        properties:
          umbrellaOrgId: '123456'
          umbrellaAuthKeyV2: aaaaaa
          umbrellaAuthSecretV2: $CRYPT_CLUSTER$a8nXr4uYaCN66qTQ1737+A==$gjmYVxnKMqvUEjo3BfIGbg==
          umbrellaSigAuthKey: bbbbbb
          umbrellaSigAuthSecret: secret456
          umbrellaDnsAuthKey: cccccc
          umbrellaDnsAuthSecret: secret789
          zscalerOrganization: z223456
          zscalerPartnerBaseUri: zscaler.net
          zscalerPartnerKey: secret012
          zscalerUsername: user1
          zscalerPassword: pass123
          ciscoSseOrgId: '323456'
          ciscoSseAuthKey: '33333444'
          ciscoSseAuthSecret: $CRYPT_CLUSTER$Gg4nVpFdldXga1hLKhdJrA==$hiFPirWJnqNxMq3l/m1ekw==
          ciscoSseContextSharing: false
    
    Example coming soon!
    

    Create CloudProviderSettings Resource

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

    Constructor syntax

    new CloudProviderSettings(name: string, args?: CloudProviderSettingsArgs, opts?: CustomResourceOptions);
    @overload
    def CloudProviderSettings(resource_name: str,
                              args: Optional[CloudProviderSettingsArgs] = None,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def CloudProviderSettings(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              cisco_sse_auth_key: Optional[str] = None,
                              cisco_sse_auth_secret: Optional[str] = None,
                              cisco_sse_context_sharing: Optional[bool] = None,
                              cisco_sse_org_id: Optional[str] = None,
                              umbrella_auth_key_v2: Optional[str] = None,
                              umbrella_auth_secret_v2: Optional[str] = None,
                              umbrella_dns_auth_key: Optional[str] = None,
                              umbrella_dns_auth_secret: Optional[str] = None,
                              umbrella_org_id: Optional[str] = None,
                              umbrella_sig_auth_key: Optional[str] = None,
                              umbrella_sig_auth_secret: Optional[str] = None,
                              zscaler_organization: Optional[str] = None,
                              zscaler_partner_base_uri: Optional[str] = None,
                              zscaler_partner_key: Optional[str] = None,
                              zscaler_password: Optional[str] = None,
                              zscaler_username: Optional[str] = None)
    func NewCloudProviderSettings(ctx *Context, name string, args *CloudProviderSettingsArgs, opts ...ResourceOption) (*CloudProviderSettings, error)
    public CloudProviderSettings(string name, CloudProviderSettingsArgs? args = null, CustomResourceOptions? opts = null)
    public CloudProviderSettings(String name, CloudProviderSettingsArgs args)
    public CloudProviderSettings(String name, CloudProviderSettingsArgs args, CustomResourceOptions options)
    
    type: sdwan:CloudProviderSettings
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "sdwan_cloudprovidersettings" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args CloudProviderSettingsArgs
    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 CloudProviderSettingsArgs
    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 CloudProviderSettingsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CloudProviderSettingsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CloudProviderSettingsArgs
    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 cloudProviderSettingsResource = new Sdwan.CloudProviderSettings("cloudProviderSettingsResource", new()
    {
        CiscoSseAuthKey = "string",
        CiscoSseAuthSecret = "string",
        CiscoSseContextSharing = false,
        CiscoSseOrgId = "string",
        UmbrellaAuthKeyV2 = "string",
        UmbrellaAuthSecretV2 = "string",
        UmbrellaDnsAuthKey = "string",
        UmbrellaDnsAuthSecret = "string",
        UmbrellaOrgId = "string",
        UmbrellaSigAuthKey = "string",
        UmbrellaSigAuthSecret = "string",
        ZscalerOrganization = "string",
        ZscalerPartnerBaseUri = "string",
        ZscalerPartnerKey = "string",
        ZscalerPassword = "string",
        ZscalerUsername = "string",
    });
    
    example, err := sdwan.NewCloudProviderSettings(ctx, "cloudProviderSettingsResource", &sdwan.CloudProviderSettingsArgs{
    	CiscoSseAuthKey:        pulumi.String("string"),
    	CiscoSseAuthSecret:     pulumi.String("string"),
    	CiscoSseContextSharing: pulumi.Bool(false),
    	CiscoSseOrgId:          pulumi.String("string"),
    	UmbrellaAuthKeyV2:      pulumi.String("string"),
    	UmbrellaAuthSecretV2:   pulumi.String("string"),
    	UmbrellaDnsAuthKey:     pulumi.String("string"),
    	UmbrellaDnsAuthSecret:  pulumi.String("string"),
    	UmbrellaOrgId:          pulumi.String("string"),
    	UmbrellaSigAuthKey:     pulumi.String("string"),
    	UmbrellaSigAuthSecret:  pulumi.String("string"),
    	ZscalerOrganization:    pulumi.String("string"),
    	ZscalerPartnerBaseUri:  pulumi.String("string"),
    	ZscalerPartnerKey:      pulumi.String("string"),
    	ZscalerPassword:        pulumi.String("string"),
    	ZscalerUsername:        pulumi.String("string"),
    })
    
    resource "sdwan_cloudprovidersettings" "cloudProviderSettingsResource" {
      cisco_sse_auth_key        = "string"
      cisco_sse_auth_secret     = "string"
      cisco_sse_context_sharing = false
      cisco_sse_org_id          = "string"
      umbrella_auth_key_v2      = "string"
      umbrella_auth_secret_v2   = "string"
      umbrella_dns_auth_key     = "string"
      umbrella_dns_auth_secret  = "string"
      umbrella_org_id           = "string"
      umbrella_sig_auth_key     = "string"
      umbrella_sig_auth_secret  = "string"
      zscaler_organization      = "string"
      zscaler_partner_base_uri  = "string"
      zscaler_partner_key       = "string"
      zscaler_password          = "string"
      zscaler_username          = "string"
    }
    
    var cloudProviderSettingsResource = new CloudProviderSettings("cloudProviderSettingsResource", CloudProviderSettingsArgs.builder()
        .ciscoSseAuthKey("string")
        .ciscoSseAuthSecret("string")
        .ciscoSseContextSharing(false)
        .ciscoSseOrgId("string")
        .umbrellaAuthKeyV2("string")
        .umbrellaAuthSecretV2("string")
        .umbrellaDnsAuthKey("string")
        .umbrellaDnsAuthSecret("string")
        .umbrellaOrgId("string")
        .umbrellaSigAuthKey("string")
        .umbrellaSigAuthSecret("string")
        .zscalerOrganization("string")
        .zscalerPartnerBaseUri("string")
        .zscalerPartnerKey("string")
        .zscalerPassword("string")
        .zscalerUsername("string")
        .build());
    
    cloud_provider_settings_resource = sdwan.CloudProviderSettings("cloudProviderSettingsResource",
        cisco_sse_auth_key="string",
        cisco_sse_auth_secret="string",
        cisco_sse_context_sharing=False,
        cisco_sse_org_id="string",
        umbrella_auth_key_v2="string",
        umbrella_auth_secret_v2="string",
        umbrella_dns_auth_key="string",
        umbrella_dns_auth_secret="string",
        umbrella_org_id="string",
        umbrella_sig_auth_key="string",
        umbrella_sig_auth_secret="string",
        zscaler_organization="string",
        zscaler_partner_base_uri="string",
        zscaler_partner_key="string",
        zscaler_password="string",
        zscaler_username="string")
    
    const cloudProviderSettingsResource = new sdwan.CloudProviderSettings("cloudProviderSettingsResource", {
        ciscoSseAuthKey: "string",
        ciscoSseAuthSecret: "string",
        ciscoSseContextSharing: false,
        ciscoSseOrgId: "string",
        umbrellaAuthKeyV2: "string",
        umbrellaAuthSecretV2: "string",
        umbrellaDnsAuthKey: "string",
        umbrellaDnsAuthSecret: "string",
        umbrellaOrgId: "string",
        umbrellaSigAuthKey: "string",
        umbrellaSigAuthSecret: "string",
        zscalerOrganization: "string",
        zscalerPartnerBaseUri: "string",
        zscalerPartnerKey: "string",
        zscalerPassword: "string",
        zscalerUsername: "string",
    });
    
    type: sdwan:CloudProviderSettings
    properties:
        ciscoSseAuthKey: string
        ciscoSseAuthSecret: string
        ciscoSseContextSharing: false
        ciscoSseOrgId: string
        umbrellaAuthKeyV2: string
        umbrellaAuthSecretV2: string
        umbrellaDnsAuthKey: string
        umbrellaDnsAuthSecret: string
        umbrellaOrgId: string
        umbrellaSigAuthKey: string
        umbrellaSigAuthSecret: string
        zscalerOrganization: string
        zscalerPartnerBaseUri: string
        zscalerPartnerKey: string
        zscalerPassword: string
        zscalerUsername: string
    

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

    CiscoSseAuthKey string
    Cisco SSE Authentication Key
    CiscoSseAuthSecret string
    Cisco SSE Authentication Secret
    CiscoSseContextSharing bool
    Enable Cisco SSE Context Sharing

    • Default value: false
    CiscoSseOrgId string
    Cisco SSE Organization ID (numeric string)
    UmbrellaAuthKeyV2 string
    Umbrella Authentication Key (v2)
    UmbrellaAuthSecretV2 string
    Umbrella Authentication Secret (v2)
    UmbrellaDnsAuthKey string
    Umbrella DNS Authentication Key
    UmbrellaDnsAuthSecret string
    Umbrella DNS Authentication Secret
    UmbrellaOrgId string
    Umbrella Organization ID (numeric string)
    UmbrellaSigAuthKey string
    Umbrella SIG Authentication Key
    UmbrellaSigAuthSecret string
    Umbrella SIG Authentication Secret
    ZscalerOrganization string
    Zscaler Organization
    ZscalerPartnerBaseUri string
    Zscaler Partner Base URI
    ZscalerPartnerKey string
    Zscaler Partner Key
    ZscalerPassword string
    Zscaler Password
    ZscalerUsername string
    Zscaler Username
    CiscoSseAuthKey string
    Cisco SSE Authentication Key
    CiscoSseAuthSecret string
    Cisco SSE Authentication Secret
    CiscoSseContextSharing bool
    Enable Cisco SSE Context Sharing

    • Default value: false
    CiscoSseOrgId string
    Cisco SSE Organization ID (numeric string)
    UmbrellaAuthKeyV2 string
    Umbrella Authentication Key (v2)
    UmbrellaAuthSecretV2 string
    Umbrella Authentication Secret (v2)
    UmbrellaDnsAuthKey string
    Umbrella DNS Authentication Key
    UmbrellaDnsAuthSecret string
    Umbrella DNS Authentication Secret
    UmbrellaOrgId string
    Umbrella Organization ID (numeric string)
    UmbrellaSigAuthKey string
    Umbrella SIG Authentication Key
    UmbrellaSigAuthSecret string
    Umbrella SIG Authentication Secret
    ZscalerOrganization string
    Zscaler Organization
    ZscalerPartnerBaseUri string
    Zscaler Partner Base URI
    ZscalerPartnerKey string
    Zscaler Partner Key
    ZscalerPassword string
    Zscaler Password
    ZscalerUsername string
    Zscaler Username
    cisco_sse_auth_key string
    Cisco SSE Authentication Key
    cisco_sse_auth_secret string
    Cisco SSE Authentication Secret
    cisco_sse_context_sharing bool
    Enable Cisco SSE Context Sharing

    • Default value: false
    cisco_sse_org_id string
    Cisco SSE Organization ID (numeric string)
    umbrella_auth_key_v2 string
    Umbrella Authentication Key (v2)
    umbrella_auth_secret_v2 string
    Umbrella Authentication Secret (v2)
    umbrella_dns_auth_key string
    Umbrella DNS Authentication Key
    umbrella_dns_auth_secret string
    Umbrella DNS Authentication Secret
    umbrella_org_id string
    Umbrella Organization ID (numeric string)
    umbrella_sig_auth_key string
    Umbrella SIG Authentication Key
    umbrella_sig_auth_secret string
    Umbrella SIG Authentication Secret
    zscaler_organization string
    Zscaler Organization
    zscaler_partner_base_uri string
    Zscaler Partner Base URI
    zscaler_partner_key string
    Zscaler Partner Key
    zscaler_password string
    Zscaler Password
    zscaler_username string
    Zscaler Username
    ciscoSseAuthKey String
    Cisco SSE Authentication Key
    ciscoSseAuthSecret String
    Cisco SSE Authentication Secret
    ciscoSseContextSharing Boolean
    Enable Cisco SSE Context Sharing

    • Default value: false
    ciscoSseOrgId String
    Cisco SSE Organization ID (numeric string)
    umbrellaAuthKeyV2 String
    Umbrella Authentication Key (v2)
    umbrellaAuthSecretV2 String
    Umbrella Authentication Secret (v2)
    umbrellaDnsAuthKey String
    Umbrella DNS Authentication Key
    umbrellaDnsAuthSecret String
    Umbrella DNS Authentication Secret
    umbrellaOrgId String
    Umbrella Organization ID (numeric string)
    umbrellaSigAuthKey String
    Umbrella SIG Authentication Key
    umbrellaSigAuthSecret String
    Umbrella SIG Authentication Secret
    zscalerOrganization String
    Zscaler Organization
    zscalerPartnerBaseUri String
    Zscaler Partner Base URI
    zscalerPartnerKey String
    Zscaler Partner Key
    zscalerPassword String
    Zscaler Password
    zscalerUsername String
    Zscaler Username
    ciscoSseAuthKey string
    Cisco SSE Authentication Key
    ciscoSseAuthSecret string
    Cisco SSE Authentication Secret
    ciscoSseContextSharing boolean
    Enable Cisco SSE Context Sharing

    • Default value: false
    ciscoSseOrgId string
    Cisco SSE Organization ID (numeric string)
    umbrellaAuthKeyV2 string
    Umbrella Authentication Key (v2)
    umbrellaAuthSecretV2 string
    Umbrella Authentication Secret (v2)
    umbrellaDnsAuthKey string
    Umbrella DNS Authentication Key
    umbrellaDnsAuthSecret string
    Umbrella DNS Authentication Secret
    umbrellaOrgId string
    Umbrella Organization ID (numeric string)
    umbrellaSigAuthKey string
    Umbrella SIG Authentication Key
    umbrellaSigAuthSecret string
    Umbrella SIG Authentication Secret
    zscalerOrganization string
    Zscaler Organization
    zscalerPartnerBaseUri string
    Zscaler Partner Base URI
    zscalerPartnerKey string
    Zscaler Partner Key
    zscalerPassword string
    Zscaler Password
    zscalerUsername string
    Zscaler Username
    cisco_sse_auth_key str
    Cisco SSE Authentication Key
    cisco_sse_auth_secret str
    Cisco SSE Authentication Secret
    cisco_sse_context_sharing bool
    Enable Cisco SSE Context Sharing

    • Default value: false
    cisco_sse_org_id str
    Cisco SSE Organization ID (numeric string)
    umbrella_auth_key_v2 str
    Umbrella Authentication Key (v2)
    umbrella_auth_secret_v2 str
    Umbrella Authentication Secret (v2)
    umbrella_dns_auth_key str
    Umbrella DNS Authentication Key
    umbrella_dns_auth_secret str
    Umbrella DNS Authentication Secret
    umbrella_org_id str
    Umbrella Organization ID (numeric string)
    umbrella_sig_auth_key str
    Umbrella SIG Authentication Key
    umbrella_sig_auth_secret str
    Umbrella SIG Authentication Secret
    zscaler_organization str
    Zscaler Organization
    zscaler_partner_base_uri str
    Zscaler Partner Base URI
    zscaler_partner_key str
    Zscaler Partner Key
    zscaler_password str
    Zscaler Password
    zscaler_username str
    Zscaler Username
    ciscoSseAuthKey String
    Cisco SSE Authentication Key
    ciscoSseAuthSecret String
    Cisco SSE Authentication Secret
    ciscoSseContextSharing Boolean
    Enable Cisco SSE Context Sharing

    • Default value: false
    ciscoSseOrgId String
    Cisco SSE Organization ID (numeric string)
    umbrellaAuthKeyV2 String
    Umbrella Authentication Key (v2)
    umbrellaAuthSecretV2 String
    Umbrella Authentication Secret (v2)
    umbrellaDnsAuthKey String
    Umbrella DNS Authentication Key
    umbrellaDnsAuthSecret String
    Umbrella DNS Authentication Secret
    umbrellaOrgId String
    Umbrella Organization ID (numeric string)
    umbrellaSigAuthKey String
    Umbrella SIG Authentication Key
    umbrellaSigAuthSecret String
    Umbrella SIG Authentication Secret
    zscalerOrganization String
    Zscaler Organization
    zscalerPartnerBaseUri String
    Zscaler Partner Base URI
    zscalerPartnerKey String
    Zscaler Partner Key
    zscalerPassword String
    Zscaler Password
    zscalerUsername String
    Zscaler Username

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CloudProviderSettings 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 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 CloudProviderSettings Resource

    Get an existing CloudProviderSettings 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?: CloudProviderSettingsState, opts?: CustomResourceOptions): CloudProviderSettings
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cisco_sse_auth_key: Optional[str] = None,
            cisco_sse_auth_secret: Optional[str] = None,
            cisco_sse_context_sharing: Optional[bool] = None,
            cisco_sse_org_id: Optional[str] = None,
            umbrella_auth_key_v2: Optional[str] = None,
            umbrella_auth_secret_v2: Optional[str] = None,
            umbrella_dns_auth_key: Optional[str] = None,
            umbrella_dns_auth_secret: Optional[str] = None,
            umbrella_org_id: Optional[str] = None,
            umbrella_sig_auth_key: Optional[str] = None,
            umbrella_sig_auth_secret: Optional[str] = None,
            zscaler_organization: Optional[str] = None,
            zscaler_partner_base_uri: Optional[str] = None,
            zscaler_partner_key: Optional[str] = None,
            zscaler_password: Optional[str] = None,
            zscaler_username: Optional[str] = None) -> CloudProviderSettings
    func GetCloudProviderSettings(ctx *Context, name string, id IDInput, state *CloudProviderSettingsState, opts ...ResourceOption) (*CloudProviderSettings, error)
    public static CloudProviderSettings Get(string name, Input<string> id, CloudProviderSettingsState? state, CustomResourceOptions? opts = null)
    public static CloudProviderSettings get(String name, Output<String> id, CloudProviderSettingsState state, CustomResourceOptions options)
    resources:  _:    type: sdwan:CloudProviderSettings    get:      id: ${id}
    import {
      to = sdwan_cloudprovidersettings.example
      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:
    CiscoSseAuthKey string
    Cisco SSE Authentication Key
    CiscoSseAuthSecret string
    Cisco SSE Authentication Secret
    CiscoSseContextSharing bool
    Enable Cisco SSE Context Sharing

    • Default value: false
    CiscoSseOrgId string
    Cisco SSE Organization ID (numeric string)
    UmbrellaAuthKeyV2 string
    Umbrella Authentication Key (v2)
    UmbrellaAuthSecretV2 string
    Umbrella Authentication Secret (v2)
    UmbrellaDnsAuthKey string
    Umbrella DNS Authentication Key
    UmbrellaDnsAuthSecret string
    Umbrella DNS Authentication Secret
    UmbrellaOrgId string
    Umbrella Organization ID (numeric string)
    UmbrellaSigAuthKey string
    Umbrella SIG Authentication Key
    UmbrellaSigAuthSecret string
    Umbrella SIG Authentication Secret
    ZscalerOrganization string
    Zscaler Organization
    ZscalerPartnerBaseUri string
    Zscaler Partner Base URI
    ZscalerPartnerKey string
    Zscaler Partner Key
    ZscalerPassword string
    Zscaler Password
    ZscalerUsername string
    Zscaler Username
    CiscoSseAuthKey string
    Cisco SSE Authentication Key
    CiscoSseAuthSecret string
    Cisco SSE Authentication Secret
    CiscoSseContextSharing bool
    Enable Cisco SSE Context Sharing

    • Default value: false
    CiscoSseOrgId string
    Cisco SSE Organization ID (numeric string)
    UmbrellaAuthKeyV2 string
    Umbrella Authentication Key (v2)
    UmbrellaAuthSecretV2 string
    Umbrella Authentication Secret (v2)
    UmbrellaDnsAuthKey string
    Umbrella DNS Authentication Key
    UmbrellaDnsAuthSecret string
    Umbrella DNS Authentication Secret
    UmbrellaOrgId string
    Umbrella Organization ID (numeric string)
    UmbrellaSigAuthKey string
    Umbrella SIG Authentication Key
    UmbrellaSigAuthSecret string
    Umbrella SIG Authentication Secret
    ZscalerOrganization string
    Zscaler Organization
    ZscalerPartnerBaseUri string
    Zscaler Partner Base URI
    ZscalerPartnerKey string
    Zscaler Partner Key
    ZscalerPassword string
    Zscaler Password
    ZscalerUsername string
    Zscaler Username
    cisco_sse_auth_key string
    Cisco SSE Authentication Key
    cisco_sse_auth_secret string
    Cisco SSE Authentication Secret
    cisco_sse_context_sharing bool
    Enable Cisco SSE Context Sharing

    • Default value: false
    cisco_sse_org_id string
    Cisco SSE Organization ID (numeric string)
    umbrella_auth_key_v2 string
    Umbrella Authentication Key (v2)
    umbrella_auth_secret_v2 string
    Umbrella Authentication Secret (v2)
    umbrella_dns_auth_key string
    Umbrella DNS Authentication Key
    umbrella_dns_auth_secret string
    Umbrella DNS Authentication Secret
    umbrella_org_id string
    Umbrella Organization ID (numeric string)
    umbrella_sig_auth_key string
    Umbrella SIG Authentication Key
    umbrella_sig_auth_secret string
    Umbrella SIG Authentication Secret
    zscaler_organization string
    Zscaler Organization
    zscaler_partner_base_uri string
    Zscaler Partner Base URI
    zscaler_partner_key string
    Zscaler Partner Key
    zscaler_password string
    Zscaler Password
    zscaler_username string
    Zscaler Username
    ciscoSseAuthKey String
    Cisco SSE Authentication Key
    ciscoSseAuthSecret String
    Cisco SSE Authentication Secret
    ciscoSseContextSharing Boolean
    Enable Cisco SSE Context Sharing

    • Default value: false
    ciscoSseOrgId String
    Cisco SSE Organization ID (numeric string)
    umbrellaAuthKeyV2 String
    Umbrella Authentication Key (v2)
    umbrellaAuthSecretV2 String
    Umbrella Authentication Secret (v2)
    umbrellaDnsAuthKey String
    Umbrella DNS Authentication Key
    umbrellaDnsAuthSecret String
    Umbrella DNS Authentication Secret
    umbrellaOrgId String
    Umbrella Organization ID (numeric string)
    umbrellaSigAuthKey String
    Umbrella SIG Authentication Key
    umbrellaSigAuthSecret String
    Umbrella SIG Authentication Secret
    zscalerOrganization String
    Zscaler Organization
    zscalerPartnerBaseUri String
    Zscaler Partner Base URI
    zscalerPartnerKey String
    Zscaler Partner Key
    zscalerPassword String
    Zscaler Password
    zscalerUsername String
    Zscaler Username
    ciscoSseAuthKey string
    Cisco SSE Authentication Key
    ciscoSseAuthSecret string
    Cisco SSE Authentication Secret
    ciscoSseContextSharing boolean
    Enable Cisco SSE Context Sharing

    • Default value: false
    ciscoSseOrgId string
    Cisco SSE Organization ID (numeric string)
    umbrellaAuthKeyV2 string
    Umbrella Authentication Key (v2)
    umbrellaAuthSecretV2 string
    Umbrella Authentication Secret (v2)
    umbrellaDnsAuthKey string
    Umbrella DNS Authentication Key
    umbrellaDnsAuthSecret string
    Umbrella DNS Authentication Secret
    umbrellaOrgId string
    Umbrella Organization ID (numeric string)
    umbrellaSigAuthKey string
    Umbrella SIG Authentication Key
    umbrellaSigAuthSecret string
    Umbrella SIG Authentication Secret
    zscalerOrganization string
    Zscaler Organization
    zscalerPartnerBaseUri string
    Zscaler Partner Base URI
    zscalerPartnerKey string
    Zscaler Partner Key
    zscalerPassword string
    Zscaler Password
    zscalerUsername string
    Zscaler Username
    cisco_sse_auth_key str
    Cisco SSE Authentication Key
    cisco_sse_auth_secret str
    Cisco SSE Authentication Secret
    cisco_sse_context_sharing bool
    Enable Cisco SSE Context Sharing

    • Default value: false
    cisco_sse_org_id str
    Cisco SSE Organization ID (numeric string)
    umbrella_auth_key_v2 str
    Umbrella Authentication Key (v2)
    umbrella_auth_secret_v2 str
    Umbrella Authentication Secret (v2)
    umbrella_dns_auth_key str
    Umbrella DNS Authentication Key
    umbrella_dns_auth_secret str
    Umbrella DNS Authentication Secret
    umbrella_org_id str
    Umbrella Organization ID (numeric string)
    umbrella_sig_auth_key str
    Umbrella SIG Authentication Key
    umbrella_sig_auth_secret str
    Umbrella SIG Authentication Secret
    zscaler_organization str
    Zscaler Organization
    zscaler_partner_base_uri str
    Zscaler Partner Base URI
    zscaler_partner_key str
    Zscaler Partner Key
    zscaler_password str
    Zscaler Password
    zscaler_username str
    Zscaler Username
    ciscoSseAuthKey String
    Cisco SSE Authentication Key
    ciscoSseAuthSecret String
    Cisco SSE Authentication Secret
    ciscoSseContextSharing Boolean
    Enable Cisco SSE Context Sharing

    • Default value: false
    ciscoSseOrgId String
    Cisco SSE Organization ID (numeric string)
    umbrellaAuthKeyV2 String
    Umbrella Authentication Key (v2)
    umbrellaAuthSecretV2 String
    Umbrella Authentication Secret (v2)
    umbrellaDnsAuthKey String
    Umbrella DNS Authentication Key
    umbrellaDnsAuthSecret String
    Umbrella DNS Authentication Secret
    umbrellaOrgId String
    Umbrella Organization ID (numeric string)
    umbrellaSigAuthKey String
    Umbrella SIG Authentication Key
    umbrellaSigAuthSecret String
    Umbrella SIG Authentication Secret
    zscalerOrganization String
    Zscaler Organization
    zscalerPartnerBaseUri String
    Zscaler Partner Base URI
    zscalerPartnerKey String
    Zscaler Partner Key
    zscalerPassword String
    Zscaler Password
    zscalerUsername String
    Zscaler Username

    Package Details

    Repository
    sdwan pulumi/pulumi-sdwan
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the sdwan Terraform Provider.
    sdwan logo
    Viewing docs for Cisco Catalyst SD-WAN v0.8.2
    published on Tuesday, May 19, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial