published on Tuesday, May 19, 2026 by Pulumi
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:
- Cisco
Sse stringAuth Key - Cisco SSE Authentication Key
- Cisco
Sse stringAuth Secret - Cisco SSE Authentication Secret
- Cisco
Sse boolContext Sharing - Enable Cisco SSE Context Sharing
- Default value:
false
- Default value:
- Cisco
Sse stringOrg Id - Cisco SSE Organization ID (numeric string)
- Umbrella
Auth stringKey V2 - Umbrella Authentication Key (v2)
- Umbrella
Auth stringSecret V2 - Umbrella Authentication Secret (v2)
- Umbrella
Dns stringAuth Key - Umbrella DNS Authentication Key
- Umbrella
Dns stringAuth Secret - Umbrella DNS Authentication Secret
- Umbrella
Org stringId - Umbrella Organization ID (numeric string)
- Umbrella
Sig stringAuth Key - Umbrella SIG Authentication Key
- Umbrella
Sig stringAuth Secret - Umbrella SIG Authentication Secret
- Zscaler
Organization string - Zscaler Organization
- Zscaler
Partner stringBase Uri - Zscaler Partner Base URI
- Zscaler
Partner stringKey - Zscaler Partner Key
- Zscaler
Password string - Zscaler Password
- Zscaler
Username string - Zscaler Username
- Cisco
Sse stringAuth Key - Cisco SSE Authentication Key
- Cisco
Sse stringAuth Secret - Cisco SSE Authentication Secret
- Cisco
Sse boolContext Sharing - Enable Cisco SSE Context Sharing
- Default value:
false
- Default value:
- Cisco
Sse stringOrg Id - Cisco SSE Organization ID (numeric string)
- Umbrella
Auth stringKey V2 - Umbrella Authentication Key (v2)
- Umbrella
Auth stringSecret V2 - Umbrella Authentication Secret (v2)
- Umbrella
Dns stringAuth Key - Umbrella DNS Authentication Key
- Umbrella
Dns stringAuth Secret - Umbrella DNS Authentication Secret
- Umbrella
Org stringId - Umbrella Organization ID (numeric string)
- Umbrella
Sig stringAuth Key - Umbrella SIG Authentication Key
- Umbrella
Sig stringAuth Secret - Umbrella SIG Authentication Secret
- Zscaler
Organization string - Zscaler Organization
- Zscaler
Partner stringBase Uri - Zscaler Partner Base URI
- Zscaler
Partner stringKey - Zscaler Partner Key
- Zscaler
Password string - Zscaler Password
- Zscaler
Username string - Zscaler Username
- cisco_
sse_ stringauth_ key - Cisco SSE Authentication Key
- cisco_
sse_ stringauth_ secret - Cisco SSE Authentication Secret
- cisco_
sse_ boolcontext_ sharing - Enable Cisco SSE Context Sharing
- Default value:
false
- Default value:
- cisco_
sse_ stringorg_ id - Cisco SSE Organization ID (numeric string)
- umbrella_
auth_ stringkey_ v2 - Umbrella Authentication Key (v2)
- umbrella_
auth_ stringsecret_ v2 - Umbrella Authentication Secret (v2)
- umbrella_
dns_ stringauth_ key - Umbrella DNS Authentication Key
- umbrella_
dns_ stringauth_ secret - Umbrella DNS Authentication Secret
- umbrella_
org_ stringid - Umbrella Organization ID (numeric string)
- umbrella_
sig_ stringauth_ key - Umbrella SIG Authentication Key
- umbrella_
sig_ stringauth_ secret - Umbrella SIG Authentication Secret
- zscaler_
organization string - Zscaler Organization
- zscaler_
partner_ stringbase_ uri - Zscaler Partner Base URI
- zscaler_
partner_ stringkey - Zscaler Partner Key
- zscaler_
password string - Zscaler Password
- zscaler_
username string - Zscaler Username
- cisco
Sse StringAuth Key - Cisco SSE Authentication Key
- cisco
Sse StringAuth Secret - Cisco SSE Authentication Secret
- cisco
Sse BooleanContext Sharing - Enable Cisco SSE Context Sharing
- Default value:
false
- Default value:
- cisco
Sse StringOrg Id - Cisco SSE Organization ID (numeric string)
- umbrella
Auth StringKey V2 - Umbrella Authentication Key (v2)
- umbrella
Auth StringSecret V2 - Umbrella Authentication Secret (v2)
- umbrella
Dns StringAuth Key - Umbrella DNS Authentication Key
- umbrella
Dns StringAuth Secret - Umbrella DNS Authentication Secret
- umbrella
Org StringId - Umbrella Organization ID (numeric string)
- umbrella
Sig StringAuth Key - Umbrella SIG Authentication Key
- umbrella
Sig StringAuth Secret - Umbrella SIG Authentication Secret
- zscaler
Organization String - Zscaler Organization
- zscaler
Partner StringBase Uri - Zscaler Partner Base URI
- zscaler
Partner StringKey - Zscaler Partner Key
- zscaler
Password String - Zscaler Password
- zscaler
Username String - Zscaler Username
- cisco
Sse stringAuth Key - Cisco SSE Authentication Key
- cisco
Sse stringAuth Secret - Cisco SSE Authentication Secret
- cisco
Sse booleanContext Sharing - Enable Cisco SSE Context Sharing
- Default value:
false
- Default value:
- cisco
Sse stringOrg Id - Cisco SSE Organization ID (numeric string)
- umbrella
Auth stringKey V2 - Umbrella Authentication Key (v2)
- umbrella
Auth stringSecret V2 - Umbrella Authentication Secret (v2)
- umbrella
Dns stringAuth Key - Umbrella DNS Authentication Key
- umbrella
Dns stringAuth Secret - Umbrella DNS Authentication Secret
- umbrella
Org stringId - Umbrella Organization ID (numeric string)
- umbrella
Sig stringAuth Key - Umbrella SIG Authentication Key
- umbrella
Sig stringAuth Secret - Umbrella SIG Authentication Secret
- zscaler
Organization string - Zscaler Organization
- zscaler
Partner stringBase Uri - Zscaler Partner Base URI
- zscaler
Partner stringKey - Zscaler Partner Key
- zscaler
Password string - Zscaler Password
- zscaler
Username string - Zscaler Username
- cisco_
sse_ strauth_ key - Cisco SSE Authentication Key
- cisco_
sse_ strauth_ secret - Cisco SSE Authentication Secret
- cisco_
sse_ boolcontext_ sharing - Enable Cisco SSE Context Sharing
- Default value:
false
- Default value:
- cisco_
sse_ strorg_ id - Cisco SSE Organization ID (numeric string)
- umbrella_
auth_ strkey_ v2 - Umbrella Authentication Key (v2)
- umbrella_
auth_ strsecret_ v2 - Umbrella Authentication Secret (v2)
- umbrella_
dns_ strauth_ key - Umbrella DNS Authentication Key
- umbrella_
dns_ strauth_ secret - Umbrella DNS Authentication Secret
- umbrella_
org_ strid - Umbrella Organization ID (numeric string)
- umbrella_
sig_ strauth_ key - Umbrella SIG Authentication Key
- umbrella_
sig_ strauth_ secret - Umbrella SIG Authentication Secret
- zscaler_
organization str - Zscaler Organization
- zscaler_
partner_ strbase_ uri - Zscaler Partner Base URI
- zscaler_
partner_ strkey - Zscaler Partner Key
- zscaler_
password str - Zscaler Password
- zscaler_
username str - Zscaler Username
- cisco
Sse StringAuth Key - Cisco SSE Authentication Key
- cisco
Sse StringAuth Secret - Cisco SSE Authentication Secret
- cisco
Sse BooleanContext Sharing - Enable Cisco SSE Context Sharing
- Default value:
false
- Default value:
- cisco
Sse StringOrg Id - Cisco SSE Organization ID (numeric string)
- umbrella
Auth StringKey V2 - Umbrella Authentication Key (v2)
- umbrella
Auth StringSecret V2 - Umbrella Authentication Secret (v2)
- umbrella
Dns StringAuth Key - Umbrella DNS Authentication Key
- umbrella
Dns StringAuth Secret - Umbrella DNS Authentication Secret
- umbrella
Org StringId - Umbrella Organization ID (numeric string)
- umbrella
Sig StringAuth Key - Umbrella SIG Authentication Key
- umbrella
Sig StringAuth Secret - Umbrella SIG Authentication Secret
- zscaler
Organization String - Zscaler Organization
- zscaler
Partner StringBase Uri - Zscaler Partner Base URI
- zscaler
Partner StringKey - Zscaler Partner Key
- zscaler
Password String - Zscaler Password
- zscaler
Username 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) -> CloudProviderSettingsfunc 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.
- Cisco
Sse stringAuth Key - Cisco SSE Authentication Key
- Cisco
Sse stringAuth Secret - Cisco SSE Authentication Secret
- Cisco
Sse boolContext Sharing - Enable Cisco SSE Context Sharing
- Default value:
false
- Default value:
- Cisco
Sse stringOrg Id - Cisco SSE Organization ID (numeric string)
- Umbrella
Auth stringKey V2 - Umbrella Authentication Key (v2)
- Umbrella
Auth stringSecret V2 - Umbrella Authentication Secret (v2)
- Umbrella
Dns stringAuth Key - Umbrella DNS Authentication Key
- Umbrella
Dns stringAuth Secret - Umbrella DNS Authentication Secret
- Umbrella
Org stringId - Umbrella Organization ID (numeric string)
- Umbrella
Sig stringAuth Key - Umbrella SIG Authentication Key
- Umbrella
Sig stringAuth Secret - Umbrella SIG Authentication Secret
- Zscaler
Organization string - Zscaler Organization
- Zscaler
Partner stringBase Uri - Zscaler Partner Base URI
- Zscaler
Partner stringKey - Zscaler Partner Key
- Zscaler
Password string - Zscaler Password
- Zscaler
Username string - Zscaler Username
- Cisco
Sse stringAuth Key - Cisco SSE Authentication Key
- Cisco
Sse stringAuth Secret - Cisco SSE Authentication Secret
- Cisco
Sse boolContext Sharing - Enable Cisco SSE Context Sharing
- Default value:
false
- Default value:
- Cisco
Sse stringOrg Id - Cisco SSE Organization ID (numeric string)
- Umbrella
Auth stringKey V2 - Umbrella Authentication Key (v2)
- Umbrella
Auth stringSecret V2 - Umbrella Authentication Secret (v2)
- Umbrella
Dns stringAuth Key - Umbrella DNS Authentication Key
- Umbrella
Dns stringAuth Secret - Umbrella DNS Authentication Secret
- Umbrella
Org stringId - Umbrella Organization ID (numeric string)
- Umbrella
Sig stringAuth Key - Umbrella SIG Authentication Key
- Umbrella
Sig stringAuth Secret - Umbrella SIG Authentication Secret
- Zscaler
Organization string - Zscaler Organization
- Zscaler
Partner stringBase Uri - Zscaler Partner Base URI
- Zscaler
Partner stringKey - Zscaler Partner Key
- Zscaler
Password string - Zscaler Password
- Zscaler
Username string - Zscaler Username
- cisco_
sse_ stringauth_ key - Cisco SSE Authentication Key
- cisco_
sse_ stringauth_ secret - Cisco SSE Authentication Secret
- cisco_
sse_ boolcontext_ sharing - Enable Cisco SSE Context Sharing
- Default value:
false
- Default value:
- cisco_
sse_ stringorg_ id - Cisco SSE Organization ID (numeric string)
- umbrella_
auth_ stringkey_ v2 - Umbrella Authentication Key (v2)
- umbrella_
auth_ stringsecret_ v2 - Umbrella Authentication Secret (v2)
- umbrella_
dns_ stringauth_ key - Umbrella DNS Authentication Key
- umbrella_
dns_ stringauth_ secret - Umbrella DNS Authentication Secret
- umbrella_
org_ stringid - Umbrella Organization ID (numeric string)
- umbrella_
sig_ stringauth_ key - Umbrella SIG Authentication Key
- umbrella_
sig_ stringauth_ secret - Umbrella SIG Authentication Secret
- zscaler_
organization string - Zscaler Organization
- zscaler_
partner_ stringbase_ uri - Zscaler Partner Base URI
- zscaler_
partner_ stringkey - Zscaler Partner Key
- zscaler_
password string - Zscaler Password
- zscaler_
username string - Zscaler Username
- cisco
Sse StringAuth Key - Cisco SSE Authentication Key
- cisco
Sse StringAuth Secret - Cisco SSE Authentication Secret
- cisco
Sse BooleanContext Sharing - Enable Cisco SSE Context Sharing
- Default value:
false
- Default value:
- cisco
Sse StringOrg Id - Cisco SSE Organization ID (numeric string)
- umbrella
Auth StringKey V2 - Umbrella Authentication Key (v2)
- umbrella
Auth StringSecret V2 - Umbrella Authentication Secret (v2)
- umbrella
Dns StringAuth Key - Umbrella DNS Authentication Key
- umbrella
Dns StringAuth Secret - Umbrella DNS Authentication Secret
- umbrella
Org StringId - Umbrella Organization ID (numeric string)
- umbrella
Sig StringAuth Key - Umbrella SIG Authentication Key
- umbrella
Sig StringAuth Secret - Umbrella SIG Authentication Secret
- zscaler
Organization String - Zscaler Organization
- zscaler
Partner StringBase Uri - Zscaler Partner Base URI
- zscaler
Partner StringKey - Zscaler Partner Key
- zscaler
Password String - Zscaler Password
- zscaler
Username String - Zscaler Username
- cisco
Sse stringAuth Key - Cisco SSE Authentication Key
- cisco
Sse stringAuth Secret - Cisco SSE Authentication Secret
- cisco
Sse booleanContext Sharing - Enable Cisco SSE Context Sharing
- Default value:
false
- Default value:
- cisco
Sse stringOrg Id - Cisco SSE Organization ID (numeric string)
- umbrella
Auth stringKey V2 - Umbrella Authentication Key (v2)
- umbrella
Auth stringSecret V2 - Umbrella Authentication Secret (v2)
- umbrella
Dns stringAuth Key - Umbrella DNS Authentication Key
- umbrella
Dns stringAuth Secret - Umbrella DNS Authentication Secret
- umbrella
Org stringId - Umbrella Organization ID (numeric string)
- umbrella
Sig stringAuth Key - Umbrella SIG Authentication Key
- umbrella
Sig stringAuth Secret - Umbrella SIG Authentication Secret
- zscaler
Organization string - Zscaler Organization
- zscaler
Partner stringBase Uri - Zscaler Partner Base URI
- zscaler
Partner stringKey - Zscaler Partner Key
- zscaler
Password string - Zscaler Password
- zscaler
Username string - Zscaler Username
- cisco_
sse_ strauth_ key - Cisco SSE Authentication Key
- cisco_
sse_ strauth_ secret - Cisco SSE Authentication Secret
- cisco_
sse_ boolcontext_ sharing - Enable Cisco SSE Context Sharing
- Default value:
false
- Default value:
- cisco_
sse_ strorg_ id - Cisco SSE Organization ID (numeric string)
- umbrella_
auth_ strkey_ v2 - Umbrella Authentication Key (v2)
- umbrella_
auth_ strsecret_ v2 - Umbrella Authentication Secret (v2)
- umbrella_
dns_ strauth_ key - Umbrella DNS Authentication Key
- umbrella_
dns_ strauth_ secret - Umbrella DNS Authentication Secret
- umbrella_
org_ strid - Umbrella Organization ID (numeric string)
- umbrella_
sig_ strauth_ key - Umbrella SIG Authentication Key
- umbrella_
sig_ strauth_ secret - Umbrella SIG Authentication Secret
- zscaler_
organization str - Zscaler Organization
- zscaler_
partner_ strbase_ uri - Zscaler Partner Base URI
- zscaler_
partner_ strkey - Zscaler Partner Key
- zscaler_
password str - Zscaler Password
- zscaler_
username str - Zscaler Username
- cisco
Sse StringAuth Key - Cisco SSE Authentication Key
- cisco
Sse StringAuth Secret - Cisco SSE Authentication Secret
- cisco
Sse BooleanContext Sharing - Enable Cisco SSE Context Sharing
- Default value:
false
- Default value:
- cisco
Sse StringOrg Id - Cisco SSE Organization ID (numeric string)
- umbrella
Auth StringKey V2 - Umbrella Authentication Key (v2)
- umbrella
Auth StringSecret V2 - Umbrella Authentication Secret (v2)
- umbrella
Dns StringAuth Key - Umbrella DNS Authentication Key
- umbrella
Dns StringAuth Secret - Umbrella DNS Authentication Secret
- umbrella
Org StringId - Umbrella Organization ID (numeric string)
- umbrella
Sig StringAuth Key - Umbrella SIG Authentication Key
- umbrella
Sig StringAuth Secret - Umbrella SIG Authentication Secret
- zscaler
Organization String - Zscaler Organization
- zscaler
Partner StringBase Uri - Zscaler Partner Base URI
- zscaler
Partner StringKey - Zscaler Partner Key
- zscaler
Password String - Zscaler Password
- zscaler
Username String - Zscaler Username
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwanTerraform Provider.
published on Tuesday, May 19, 2026 by Pulumi