sdwan.DnsSecurityPolicyDefinition
Explore with Pulumi AI
This resource can manage a DNS Security Policy Definition .
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = new sdwan.DnsSecurityPolicyDefinition("example", {
name: "Example",
description: "Example",
domainListId: "84f10c9d-def7-45a3-8c64-6df26163c861",
localDomainBypassEnabled: false,
matchAllVpn: true,
dnscrypt: true,
umbrellaDnsDefault: true,
ciscoSigCredentialsFeatureTemplateId: "3ac6eef9-bd8f-458d-96a7-a932c90b1e75",
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.DnsSecurityPolicyDefinition("example",
name="Example",
description="Example",
domain_list_id="84f10c9d-def7-45a3-8c64-6df26163c861",
local_domain_bypass_enabled=False,
match_all_vpn=True,
dnscrypt=True,
umbrella_dns_default=True,
cisco_sig_credentials_feature_template_id="3ac6eef9-bd8f-458d-96a7-a932c90b1e75")
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.NewDnsSecurityPolicyDefinition(ctx, "example", &sdwan.DnsSecurityPolicyDefinitionArgs{
Name: pulumi.String("Example"),
Description: pulumi.String("Example"),
DomainListId: pulumi.String("84f10c9d-def7-45a3-8c64-6df26163c861"),
LocalDomainBypassEnabled: pulumi.Bool(false),
MatchAllVpn: pulumi.Bool(true),
Dnscrypt: pulumi.Bool(true),
UmbrellaDnsDefault: pulumi.Bool(true),
CiscoSigCredentialsFeatureTemplateId: pulumi.String("3ac6eef9-bd8f-458d-96a7-a932c90b1e75"),
})
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.DnsSecurityPolicyDefinition("example", new()
{
Name = "Example",
Description = "Example",
DomainListId = "84f10c9d-def7-45a3-8c64-6df26163c861",
LocalDomainBypassEnabled = false,
MatchAllVpn = true,
Dnscrypt = true,
UmbrellaDnsDefault = true,
CiscoSigCredentialsFeatureTemplateId = "3ac6eef9-bd8f-458d-96a7-a932c90b1e75",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.DnsSecurityPolicyDefinition;
import com.pulumi.sdwan.DnsSecurityPolicyDefinitionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new DnsSecurityPolicyDefinition("example", DnsSecurityPolicyDefinitionArgs.builder()
.name("Example")
.description("Example")
.domainListId("84f10c9d-def7-45a3-8c64-6df26163c861")
.localDomainBypassEnabled(false)
.matchAllVpn(true)
.dnscrypt(true)
.umbrellaDnsDefault(true)
.ciscoSigCredentialsFeatureTemplateId("3ac6eef9-bd8f-458d-96a7-a932c90b1e75")
.build());
}
}
resources:
example:
type: sdwan:DnsSecurityPolicyDefinition
properties:
name: Example
description: Example
domainListId: 84f10c9d-def7-45a3-8c64-6df26163c861
localDomainBypassEnabled: false
matchAllVpn: true
dnscrypt: true
umbrellaDnsDefault: true
ciscoSigCredentialsFeatureTemplateId: 3ac6eef9-bd8f-458d-96a7-a932c90b1e75
Create DnsSecurityPolicyDefinition Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DnsSecurityPolicyDefinition(name: string, args: DnsSecurityPolicyDefinitionArgs, opts?: CustomResourceOptions);
@overload
def DnsSecurityPolicyDefinition(resource_name: str,
args: DnsSecurityPolicyDefinitionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DnsSecurityPolicyDefinition(resource_name: str,
opts: Optional[ResourceOptions] = None,
cisco_sig_credentials_feature_template_id: Optional[str] = None,
description: Optional[str] = None,
match_all_vpn: Optional[bool] = None,
umbrella_dns_default: Optional[bool] = None,
cisco_sig_credentials_feature_template_version: Optional[int] = None,
custom_dns_server_ip: Optional[str] = None,
dnscrypt: Optional[bool] = None,
domain_list_id: Optional[str] = None,
domain_list_version: Optional[int] = None,
local_domain_bypass_enabled: Optional[bool] = None,
name: Optional[str] = None,
target_vpns: Optional[Sequence[DnsSecurityPolicyDefinitionTargetVpnArgs]] = None)
func NewDnsSecurityPolicyDefinition(ctx *Context, name string, args DnsSecurityPolicyDefinitionArgs, opts ...ResourceOption) (*DnsSecurityPolicyDefinition, error)
public DnsSecurityPolicyDefinition(string name, DnsSecurityPolicyDefinitionArgs args, CustomResourceOptions? opts = null)
public DnsSecurityPolicyDefinition(String name, DnsSecurityPolicyDefinitionArgs args)
public DnsSecurityPolicyDefinition(String name, DnsSecurityPolicyDefinitionArgs args, CustomResourceOptions options)
type: sdwan:DnsSecurityPolicyDefinition
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 DnsSecurityPolicyDefinitionArgs
- 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 DnsSecurityPolicyDefinitionArgs
- 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 DnsSecurityPolicyDefinitionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DnsSecurityPolicyDefinitionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DnsSecurityPolicyDefinitionArgs
- 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 dnsSecurityPolicyDefinitionResource = new Sdwan.DnsSecurityPolicyDefinition("dnsSecurityPolicyDefinitionResource", new()
{
CiscoSigCredentialsFeatureTemplateId = "string",
Description = "string",
MatchAllVpn = false,
UmbrellaDnsDefault = false,
CiscoSigCredentialsFeatureTemplateVersion = 0,
CustomDnsServerIp = "string",
Dnscrypt = false,
DomainListId = "string",
DomainListVersion = 0,
LocalDomainBypassEnabled = false,
Name = "string",
TargetVpns = new[]
{
new Sdwan.Inputs.DnsSecurityPolicyDefinitionTargetVpnArgs
{
CustomDnsServerIp = "string",
LocalDomainBypassEnabled = false,
UmbrellaDnsDefault = false,
VpnIds = new[]
{
"string",
},
},
},
});
example, err := sdwan.NewDnsSecurityPolicyDefinition(ctx, "dnsSecurityPolicyDefinitionResource", &sdwan.DnsSecurityPolicyDefinitionArgs{
CiscoSigCredentialsFeatureTemplateId: pulumi.String("string"),
Description: pulumi.String("string"),
MatchAllVpn: pulumi.Bool(false),
UmbrellaDnsDefault: pulumi.Bool(false),
CiscoSigCredentialsFeatureTemplateVersion: pulumi.Int(0),
CustomDnsServerIp: pulumi.String("string"),
Dnscrypt: pulumi.Bool(false),
DomainListId: pulumi.String("string"),
DomainListVersion: pulumi.Int(0),
LocalDomainBypassEnabled: pulumi.Bool(false),
Name: pulumi.String("string"),
TargetVpns: sdwan.DnsSecurityPolicyDefinitionTargetVpnArray{
&sdwan.DnsSecurityPolicyDefinitionTargetVpnArgs{
CustomDnsServerIp: pulumi.String("string"),
LocalDomainBypassEnabled: pulumi.Bool(false),
UmbrellaDnsDefault: pulumi.Bool(false),
VpnIds: pulumi.StringArray{
pulumi.String("string"),
},
},
},
})
var dnsSecurityPolicyDefinitionResource = new DnsSecurityPolicyDefinition("dnsSecurityPolicyDefinitionResource", DnsSecurityPolicyDefinitionArgs.builder()
.ciscoSigCredentialsFeatureTemplateId("string")
.description("string")
.matchAllVpn(false)
.umbrellaDnsDefault(false)
.ciscoSigCredentialsFeatureTemplateVersion(0)
.customDnsServerIp("string")
.dnscrypt(false)
.domainListId("string")
.domainListVersion(0)
.localDomainBypassEnabled(false)
.name("string")
.targetVpns(DnsSecurityPolicyDefinitionTargetVpnArgs.builder()
.customDnsServerIp("string")
.localDomainBypassEnabled(false)
.umbrellaDnsDefault(false)
.vpnIds("string")
.build())
.build());
dns_security_policy_definition_resource = sdwan.DnsSecurityPolicyDefinition("dnsSecurityPolicyDefinitionResource",
cisco_sig_credentials_feature_template_id="string",
description="string",
match_all_vpn=False,
umbrella_dns_default=False,
cisco_sig_credentials_feature_template_version=0,
custom_dns_server_ip="string",
dnscrypt=False,
domain_list_id="string",
domain_list_version=0,
local_domain_bypass_enabled=False,
name="string",
target_vpns=[sdwan.DnsSecurityPolicyDefinitionTargetVpnArgs(
custom_dns_server_ip="string",
local_domain_bypass_enabled=False,
umbrella_dns_default=False,
vpn_ids=["string"],
)])
const dnsSecurityPolicyDefinitionResource = new sdwan.DnsSecurityPolicyDefinition("dnsSecurityPolicyDefinitionResource", {
ciscoSigCredentialsFeatureTemplateId: "string",
description: "string",
matchAllVpn: false,
umbrellaDnsDefault: false,
ciscoSigCredentialsFeatureTemplateVersion: 0,
customDnsServerIp: "string",
dnscrypt: false,
domainListId: "string",
domainListVersion: 0,
localDomainBypassEnabled: false,
name: "string",
targetVpns: [{
customDnsServerIp: "string",
localDomainBypassEnabled: false,
umbrellaDnsDefault: false,
vpnIds: ["string"],
}],
});
type: sdwan:DnsSecurityPolicyDefinition
properties:
ciscoSigCredentialsFeatureTemplateId: string
ciscoSigCredentialsFeatureTemplateVersion: 0
customDnsServerIp: string
description: string
dnscrypt: false
domainListId: string
domainListVersion: 0
localDomainBypassEnabled: false
matchAllVpn: false
name: string
targetVpns:
- customDnsServerIp: string
localDomainBypassEnabled: false
umbrellaDnsDefault: false
vpnIds:
- string
umbrellaDnsDefault: false
DnsSecurityPolicyDefinition Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The DnsSecurityPolicyDefinition resource accepts the following input properties:
- Cisco
Sig stringCredentials Feature Template Id - Credentials feature template ID
- Description string
- The description of the policy definition.
- Match
All boolVpn - Should use match all VPN
- Umbrella
Dns boolDefault - Should use umbrella as DNS Server
- Cisco
Sig intCredentials Feature Template Version - Credentials feature template version
- Custom
Dns stringServer Ip - Only relevant when
umbrella_dns_default
isfalse
- Dnscrypt bool
- Should DNSCrypt be enabled
- Domain
List stringId - Local domain bypass list ID
- Domain
List intVersion - Local domain bypass list version
- Local
Domain boolBypass Enabled - Should the local domain bypass list be enabled
- Name string
- The name of the policy definition.
- Target
Vpns List<DnsSecurity Policy Definition Target Vpn> - Only relevant when
match_all_vpn
isfalse
- Cisco
Sig stringCredentials Feature Template Id - Credentials feature template ID
- Description string
- The description of the policy definition.
- Match
All boolVpn - Should use match all VPN
- Umbrella
Dns boolDefault - Should use umbrella as DNS Server
- Cisco
Sig intCredentials Feature Template Version - Credentials feature template version
- Custom
Dns stringServer Ip - Only relevant when
umbrella_dns_default
isfalse
- Dnscrypt bool
- Should DNSCrypt be enabled
- Domain
List stringId - Local domain bypass list ID
- Domain
List intVersion - Local domain bypass list version
- Local
Domain boolBypass Enabled - Should the local domain bypass list be enabled
- Name string
- The name of the policy definition.
- Target
Vpns []DnsSecurity Policy Definition Target Vpn Args - Only relevant when
match_all_vpn
isfalse
- cisco
Sig StringCredentials Feature Template Id - Credentials feature template ID
- description String
- The description of the policy definition.
- match
All BooleanVpn - Should use match all VPN
- umbrella
Dns BooleanDefault - Should use umbrella as DNS Server
- cisco
Sig IntegerCredentials Feature Template Version - Credentials feature template version
- custom
Dns StringServer Ip - Only relevant when
umbrella_dns_default
isfalse
- dnscrypt Boolean
- Should DNSCrypt be enabled
- domain
List StringId - Local domain bypass list ID
- domain
List IntegerVersion - Local domain bypass list version
- local
Domain BooleanBypass Enabled - Should the local domain bypass list be enabled
- name String
- The name of the policy definition.
- target
Vpns List<DnsSecurity Policy Definition Target Vpn> - Only relevant when
match_all_vpn
isfalse
- cisco
Sig stringCredentials Feature Template Id - Credentials feature template ID
- description string
- The description of the policy definition.
- match
All booleanVpn - Should use match all VPN
- umbrella
Dns booleanDefault - Should use umbrella as DNS Server
- cisco
Sig numberCredentials Feature Template Version - Credentials feature template version
- custom
Dns stringServer Ip - Only relevant when
umbrella_dns_default
isfalse
- dnscrypt boolean
- Should DNSCrypt be enabled
- domain
List stringId - Local domain bypass list ID
- domain
List numberVersion - Local domain bypass list version
- local
Domain booleanBypass Enabled - Should the local domain bypass list be enabled
- name string
- The name of the policy definition.
- target
Vpns DnsSecurity Policy Definition Target Vpn[] - Only relevant when
match_all_vpn
isfalse
- cisco_
sig_ strcredentials_ feature_ template_ id - Credentials feature template ID
- description str
- The description of the policy definition.
- match_
all_ boolvpn - Should use match all VPN
- umbrella_
dns_ booldefault - Should use umbrella as DNS Server
- cisco_
sig_ intcredentials_ feature_ template_ version - Credentials feature template version
- custom_
dns_ strserver_ ip - Only relevant when
umbrella_dns_default
isfalse
- dnscrypt bool
- Should DNSCrypt be enabled
- domain_
list_ strid - Local domain bypass list ID
- domain_
list_ intversion - Local domain bypass list version
- local_
domain_ boolbypass_ enabled - Should the local domain bypass list be enabled
- name str
- The name of the policy definition.
- target_
vpns Sequence[DnsSecurity Policy Definition Target Vpn Args] - Only relevant when
match_all_vpn
isfalse
- cisco
Sig StringCredentials Feature Template Id - Credentials feature template ID
- description String
- The description of the policy definition.
- match
All BooleanVpn - Should use match all VPN
- umbrella
Dns BooleanDefault - Should use umbrella as DNS Server
- cisco
Sig NumberCredentials Feature Template Version - Credentials feature template version
- custom
Dns StringServer Ip - Only relevant when
umbrella_dns_default
isfalse
- dnscrypt Boolean
- Should DNSCrypt be enabled
- domain
List StringId - Local domain bypass list ID
- domain
List NumberVersion - Local domain bypass list version
- local
Domain BooleanBypass Enabled - Should the local domain bypass list be enabled
- name String
- The name of the policy definition.
- target
Vpns List<Property Map> - Only relevant when
match_all_vpn
isfalse
Outputs
All input properties are implicitly available as output properties. Additionally, the DnsSecurityPolicyDefinition resource produces the following output properties:
Look up Existing DnsSecurityPolicyDefinition Resource
Get an existing DnsSecurityPolicyDefinition 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?: DnsSecurityPolicyDefinitionState, opts?: CustomResourceOptions): DnsSecurityPolicyDefinition
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cisco_sig_credentials_feature_template_id: Optional[str] = None,
cisco_sig_credentials_feature_template_version: Optional[int] = None,
custom_dns_server_ip: Optional[str] = None,
description: Optional[str] = None,
dnscrypt: Optional[bool] = None,
domain_list_id: Optional[str] = None,
domain_list_version: Optional[int] = None,
local_domain_bypass_enabled: Optional[bool] = None,
match_all_vpn: Optional[bool] = None,
name: Optional[str] = None,
target_vpns: Optional[Sequence[DnsSecurityPolicyDefinitionTargetVpnArgs]] = None,
umbrella_dns_default: Optional[bool] = None,
version: Optional[int] = None) -> DnsSecurityPolicyDefinition
func GetDnsSecurityPolicyDefinition(ctx *Context, name string, id IDInput, state *DnsSecurityPolicyDefinitionState, opts ...ResourceOption) (*DnsSecurityPolicyDefinition, error)
public static DnsSecurityPolicyDefinition Get(string name, Input<string> id, DnsSecurityPolicyDefinitionState? state, CustomResourceOptions? opts = null)
public static DnsSecurityPolicyDefinition get(String name, Output<String> id, DnsSecurityPolicyDefinitionState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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
Sig stringCredentials Feature Template Id - Credentials feature template ID
- Cisco
Sig intCredentials Feature Template Version - Credentials feature template version
- Custom
Dns stringServer Ip - Only relevant when
umbrella_dns_default
isfalse
- Description string
- The description of the policy definition.
- Dnscrypt bool
- Should DNSCrypt be enabled
- Domain
List stringId - Local domain bypass list ID
- Domain
List intVersion - Local domain bypass list version
- Local
Domain boolBypass Enabled - Should the local domain bypass list be enabled
- Match
All boolVpn - Should use match all VPN
- Name string
- The name of the policy definition.
- Target
Vpns List<DnsSecurity Policy Definition Target Vpn> - Only relevant when
match_all_vpn
isfalse
- Umbrella
Dns boolDefault - Should use umbrella as DNS Server
- Version int
- The version of the object
- Cisco
Sig stringCredentials Feature Template Id - Credentials feature template ID
- Cisco
Sig intCredentials Feature Template Version - Credentials feature template version
- Custom
Dns stringServer Ip - Only relevant when
umbrella_dns_default
isfalse
- Description string
- The description of the policy definition.
- Dnscrypt bool
- Should DNSCrypt be enabled
- Domain
List stringId - Local domain bypass list ID
- Domain
List intVersion - Local domain bypass list version
- Local
Domain boolBypass Enabled - Should the local domain bypass list be enabled
- Match
All boolVpn - Should use match all VPN
- Name string
- The name of the policy definition.
- Target
Vpns []DnsSecurity Policy Definition Target Vpn Args - Only relevant when
match_all_vpn
isfalse
- Umbrella
Dns boolDefault - Should use umbrella as DNS Server
- Version int
- The version of the object
- cisco
Sig StringCredentials Feature Template Id - Credentials feature template ID
- cisco
Sig IntegerCredentials Feature Template Version - Credentials feature template version
- custom
Dns StringServer Ip - Only relevant when
umbrella_dns_default
isfalse
- description String
- The description of the policy definition.
- dnscrypt Boolean
- Should DNSCrypt be enabled
- domain
List StringId - Local domain bypass list ID
- domain
List IntegerVersion - Local domain bypass list version
- local
Domain BooleanBypass Enabled - Should the local domain bypass list be enabled
- match
All BooleanVpn - Should use match all VPN
- name String
- The name of the policy definition.
- target
Vpns List<DnsSecurity Policy Definition Target Vpn> - Only relevant when
match_all_vpn
isfalse
- umbrella
Dns BooleanDefault - Should use umbrella as DNS Server
- version Integer
- The version of the object
- cisco
Sig stringCredentials Feature Template Id - Credentials feature template ID
- cisco
Sig numberCredentials Feature Template Version - Credentials feature template version
- custom
Dns stringServer Ip - Only relevant when
umbrella_dns_default
isfalse
- description string
- The description of the policy definition.
- dnscrypt boolean
- Should DNSCrypt be enabled
- domain
List stringId - Local domain bypass list ID
- domain
List numberVersion - Local domain bypass list version
- local
Domain booleanBypass Enabled - Should the local domain bypass list be enabled
- match
All booleanVpn - Should use match all VPN
- name string
- The name of the policy definition.
- target
Vpns DnsSecurity Policy Definition Target Vpn[] - Only relevant when
match_all_vpn
isfalse
- umbrella
Dns booleanDefault - Should use umbrella as DNS Server
- version number
- The version of the object
- cisco_
sig_ strcredentials_ feature_ template_ id - Credentials feature template ID
- cisco_
sig_ intcredentials_ feature_ template_ version - Credentials feature template version
- custom_
dns_ strserver_ ip - Only relevant when
umbrella_dns_default
isfalse
- description str
- The description of the policy definition.
- dnscrypt bool
- Should DNSCrypt be enabled
- domain_
list_ strid - Local domain bypass list ID
- domain_
list_ intversion - Local domain bypass list version
- local_
domain_ boolbypass_ enabled - Should the local domain bypass list be enabled
- match_
all_ boolvpn - Should use match all VPN
- name str
- The name of the policy definition.
- target_
vpns Sequence[DnsSecurity Policy Definition Target Vpn Args] - Only relevant when
match_all_vpn
isfalse
- umbrella_
dns_ booldefault - Should use umbrella as DNS Server
- version int
- The version of the object
- cisco
Sig StringCredentials Feature Template Id - Credentials feature template ID
- cisco
Sig NumberCredentials Feature Template Version - Credentials feature template version
- custom
Dns StringServer Ip - Only relevant when
umbrella_dns_default
isfalse
- description String
- The description of the policy definition.
- dnscrypt Boolean
- Should DNSCrypt be enabled
- domain
List StringId - Local domain bypass list ID
- domain
List NumberVersion - Local domain bypass list version
- local
Domain BooleanBypass Enabled - Should the local domain bypass list be enabled
- match
All BooleanVpn - Should use match all VPN
- name String
- The name of the policy definition.
- target
Vpns List<Property Map> - Only relevant when
match_all_vpn
isfalse
- umbrella
Dns BooleanDefault - Should use umbrella as DNS Server
- version Number
- The version of the object
Supporting Types
DnsSecurityPolicyDefinitionTargetVpn, DnsSecurityPolicyDefinitionTargetVpnArgs
- Custom
Dns stringServer Ip - Only relevant when
umbrella_dns_default
isfalse
- Local
Domain boolBypass Enabled - Should the local domain bypass list be enabled
- Umbrella
Dns boolDefault - Should use umbrella as DNS Server
- Vpn
Ids List<string> - VPN ID's separated by Comma
- Custom
Dns stringServer Ip - Only relevant when
umbrella_dns_default
isfalse
- Local
Domain boolBypass Enabled - Should the local domain bypass list be enabled
- Umbrella
Dns boolDefault - Should use umbrella as DNS Server
- Vpn
Ids []string - VPN ID's separated by Comma
- custom
Dns StringServer Ip - Only relevant when
umbrella_dns_default
isfalse
- local
Domain BooleanBypass Enabled - Should the local domain bypass list be enabled
- umbrella
Dns BooleanDefault - Should use umbrella as DNS Server
- vpn
Ids List<String> - VPN ID's separated by Comma
- custom
Dns stringServer Ip - Only relevant when
umbrella_dns_default
isfalse
- local
Domain booleanBypass Enabled - Should the local domain bypass list be enabled
- umbrella
Dns booleanDefault - Should use umbrella as DNS Server
- vpn
Ids string[] - VPN ID's separated by Comma
- custom_
dns_ strserver_ ip - Only relevant when
umbrella_dns_default
isfalse
- local_
domain_ boolbypass_ enabled - Should the local domain bypass list be enabled
- umbrella_
dns_ booldefault - Should use umbrella as DNS Server
- vpn_
ids Sequence[str] - VPN ID's separated by Comma
- custom
Dns StringServer Ip - Only relevant when
umbrella_dns_default
isfalse
- local
Domain BooleanBypass Enabled - Should the local domain bypass list be enabled
- umbrella
Dns BooleanDefault - Should use umbrella as DNS Server
- vpn
Ids List<String> - VPN ID's separated by Comma
Import
$ pulumi import sdwan:index/dnsSecurityPolicyDefinition:DnsSecurityPolicyDefinition example "f6b2c44c-693c-4763-b010-895aa3d236bd"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwan
Terraform Provider.