cloudflare.ZeroTrustDnsLocation
Explore with Pulumi AI
Provides a Cloudflare Teams Location resource. Teams Locations are referenced when creating secure web gateway policies.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const example = new cloudflare.ZeroTrustDnsLocation("example", {
accountId: "f037e56e89293a057740de681ac9abbe",
name: "office",
clientDefault: true,
ecsSupport: false,
networks: [
{
network: "203.0.113.1/32",
},
{
network: "203.0.113.2/32",
},
],
});
import pulumi
import pulumi_cloudflare as cloudflare
example = cloudflare.ZeroTrustDnsLocation("example",
account_id="f037e56e89293a057740de681ac9abbe",
name="office",
client_default=True,
ecs_support=False,
networks=[
{
"network": "203.0.113.1/32",
},
{
"network": "203.0.113.2/32",
},
])
package main
import (
"github.com/pulumi/pulumi-cloudflare/sdk/v5/go/cloudflare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudflare.NewZeroTrustDnsLocation(ctx, "example", &cloudflare.ZeroTrustDnsLocationArgs{
AccountId: pulumi.String("f037e56e89293a057740de681ac9abbe"),
Name: pulumi.String("office"),
ClientDefault: pulumi.Bool(true),
EcsSupport: pulumi.Bool(false),
Networks: cloudflare.ZeroTrustDnsLocationNetworkArray{
&cloudflare.ZeroTrustDnsLocationNetworkArgs{
Network: pulumi.String("203.0.113.1/32"),
},
&cloudflare.ZeroTrustDnsLocationNetworkArgs{
Network: pulumi.String("203.0.113.2/32"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var example = new Cloudflare.ZeroTrustDnsLocation("example", new()
{
AccountId = "f037e56e89293a057740de681ac9abbe",
Name = "office",
ClientDefault = true,
EcsSupport = false,
Networks = new[]
{
new Cloudflare.Inputs.ZeroTrustDnsLocationNetworkArgs
{
Network = "203.0.113.1/32",
},
new Cloudflare.Inputs.ZeroTrustDnsLocationNetworkArgs
{
Network = "203.0.113.2/32",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.ZeroTrustDnsLocation;
import com.pulumi.cloudflare.ZeroTrustDnsLocationArgs;
import com.pulumi.cloudflare.inputs.ZeroTrustDnsLocationNetworkArgs;
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 ZeroTrustDnsLocation("example", ZeroTrustDnsLocationArgs.builder()
.accountId("f037e56e89293a057740de681ac9abbe")
.name("office")
.clientDefault(true)
.ecsSupport(false)
.networks(
ZeroTrustDnsLocationNetworkArgs.builder()
.network("203.0.113.1/32")
.build(),
ZeroTrustDnsLocationNetworkArgs.builder()
.network("203.0.113.2/32")
.build())
.build());
}
}
resources:
example:
type: cloudflare:ZeroTrustDnsLocation
properties:
accountId: f037e56e89293a057740de681ac9abbe
name: office
clientDefault: true
ecsSupport: false
networks:
- network: 203.0.113.1/32
- network: 203.0.113.2/32
Create ZeroTrustDnsLocation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ZeroTrustDnsLocation(name: string, args: ZeroTrustDnsLocationArgs, opts?: CustomResourceOptions);
@overload
def ZeroTrustDnsLocation(resource_name: str,
args: ZeroTrustDnsLocationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ZeroTrustDnsLocation(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
name: Optional[str] = None,
client_default: Optional[bool] = None,
dns_destination_ips_id: Optional[str] = None,
dns_destination_ipv6_block_id: Optional[str] = None,
ecs_support: Optional[bool] = None,
endpoints: Optional[ZeroTrustDnsLocationEndpointsArgs] = None,
networks: Optional[Sequence[ZeroTrustDnsLocationNetworkArgs]] = None)
func NewZeroTrustDnsLocation(ctx *Context, name string, args ZeroTrustDnsLocationArgs, opts ...ResourceOption) (*ZeroTrustDnsLocation, error)
public ZeroTrustDnsLocation(string name, ZeroTrustDnsLocationArgs args, CustomResourceOptions? opts = null)
public ZeroTrustDnsLocation(String name, ZeroTrustDnsLocationArgs args)
public ZeroTrustDnsLocation(String name, ZeroTrustDnsLocationArgs args, CustomResourceOptions options)
type: cloudflare:ZeroTrustDnsLocation
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 ZeroTrustDnsLocationArgs
- 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 ZeroTrustDnsLocationArgs
- 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 ZeroTrustDnsLocationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ZeroTrustDnsLocationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ZeroTrustDnsLocationArgs
- 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 zeroTrustDnsLocationResource = new Cloudflare.ZeroTrustDnsLocation("zeroTrustDnsLocationResource", new()
{
AccountId = "string",
Name = "string",
ClientDefault = false,
DnsDestinationIpsId = "string",
DnsDestinationIpv6BlockId = "string",
EcsSupport = false,
Endpoints = new Cloudflare.Inputs.ZeroTrustDnsLocationEndpointsArgs
{
Doh = new Cloudflare.Inputs.ZeroTrustDnsLocationEndpointsDohArgs
{
Enabled = false,
AuthenticationEnabled = false,
Networks = new[]
{
new Cloudflare.Inputs.ZeroTrustDnsLocationEndpointsDohNetworkArgs
{
Network = "string",
},
},
RequireToken = false,
},
Dot = new Cloudflare.Inputs.ZeroTrustDnsLocationEndpointsDotArgs
{
Enabled = false,
AuthenticationEnabled = false,
Networks = new[]
{
new Cloudflare.Inputs.ZeroTrustDnsLocationEndpointsDotNetworkArgs
{
Network = "string",
},
},
RequireToken = false,
},
Ipv4 = new Cloudflare.Inputs.ZeroTrustDnsLocationEndpointsIpv4Args
{
Enabled = false,
AuthenticationEnabled = false,
},
Ipv6 = new Cloudflare.Inputs.ZeroTrustDnsLocationEndpointsIpv6Args
{
Enabled = false,
AuthenticationEnabled = false,
Networks = new[]
{
new Cloudflare.Inputs.ZeroTrustDnsLocationEndpointsIpv6NetworkArgs
{
Network = "string",
},
},
},
},
Networks = new[]
{
new Cloudflare.Inputs.ZeroTrustDnsLocationNetworkArgs
{
Network = "string",
},
},
});
example, err := cloudflare.NewZeroTrustDnsLocation(ctx, "zeroTrustDnsLocationResource", &cloudflare.ZeroTrustDnsLocationArgs{
AccountId: pulumi.String("string"),
Name: pulumi.String("string"),
ClientDefault: pulumi.Bool(false),
DnsDestinationIpsId: pulumi.String("string"),
DnsDestinationIpv6BlockId: pulumi.String("string"),
EcsSupport: pulumi.Bool(false),
Endpoints: &cloudflare.ZeroTrustDnsLocationEndpointsArgs{
Doh: &cloudflare.ZeroTrustDnsLocationEndpointsDohArgs{
Enabled: pulumi.Bool(false),
AuthenticationEnabled: pulumi.Bool(false),
Networks: cloudflare.ZeroTrustDnsLocationEndpointsDohNetworkArray{
&cloudflare.ZeroTrustDnsLocationEndpointsDohNetworkArgs{
Network: pulumi.String("string"),
},
},
RequireToken: pulumi.Bool(false),
},
Dot: &cloudflare.ZeroTrustDnsLocationEndpointsDotArgs{
Enabled: pulumi.Bool(false),
AuthenticationEnabled: pulumi.Bool(false),
Networks: cloudflare.ZeroTrustDnsLocationEndpointsDotNetworkArray{
&cloudflare.ZeroTrustDnsLocationEndpointsDotNetworkArgs{
Network: pulumi.String("string"),
},
},
RequireToken: pulumi.Bool(false),
},
Ipv4: &cloudflare.ZeroTrustDnsLocationEndpointsIpv4Args{
Enabled: pulumi.Bool(false),
AuthenticationEnabled: pulumi.Bool(false),
},
Ipv6: &cloudflare.ZeroTrustDnsLocationEndpointsIpv6Args{
Enabled: pulumi.Bool(false),
AuthenticationEnabled: pulumi.Bool(false),
Networks: cloudflare.ZeroTrustDnsLocationEndpointsIpv6NetworkArray{
&cloudflare.ZeroTrustDnsLocationEndpointsIpv6NetworkArgs{
Network: pulumi.String("string"),
},
},
},
},
Networks: cloudflare.ZeroTrustDnsLocationNetworkArray{
&cloudflare.ZeroTrustDnsLocationNetworkArgs{
Network: pulumi.String("string"),
},
},
})
var zeroTrustDnsLocationResource = new ZeroTrustDnsLocation("zeroTrustDnsLocationResource", ZeroTrustDnsLocationArgs.builder()
.accountId("string")
.name("string")
.clientDefault(false)
.dnsDestinationIpsId("string")
.dnsDestinationIpv6BlockId("string")
.ecsSupport(false)
.endpoints(ZeroTrustDnsLocationEndpointsArgs.builder()
.doh(ZeroTrustDnsLocationEndpointsDohArgs.builder()
.enabled(false)
.authenticationEnabled(false)
.networks(ZeroTrustDnsLocationEndpointsDohNetworkArgs.builder()
.network("string")
.build())
.requireToken(false)
.build())
.dot(ZeroTrustDnsLocationEndpointsDotArgs.builder()
.enabled(false)
.authenticationEnabled(false)
.networks(ZeroTrustDnsLocationEndpointsDotNetworkArgs.builder()
.network("string")
.build())
.requireToken(false)
.build())
.ipv4(ZeroTrustDnsLocationEndpointsIpv4Args.builder()
.enabled(false)
.authenticationEnabled(false)
.build())
.ipv6(ZeroTrustDnsLocationEndpointsIpv6Args.builder()
.enabled(false)
.authenticationEnabled(false)
.networks(ZeroTrustDnsLocationEndpointsIpv6NetworkArgs.builder()
.network("string")
.build())
.build())
.build())
.networks(ZeroTrustDnsLocationNetworkArgs.builder()
.network("string")
.build())
.build());
zero_trust_dns_location_resource = cloudflare.ZeroTrustDnsLocation("zeroTrustDnsLocationResource",
account_id="string",
name="string",
client_default=False,
dns_destination_ips_id="string",
dns_destination_ipv6_block_id="string",
ecs_support=False,
endpoints={
"doh": {
"enabled": False,
"authentication_enabled": False,
"networks": [{
"network": "string",
}],
"require_token": False,
},
"dot": {
"enabled": False,
"authentication_enabled": False,
"networks": [{
"network": "string",
}],
"require_token": False,
},
"ipv4": {
"enabled": False,
"authentication_enabled": False,
},
"ipv6": {
"enabled": False,
"authentication_enabled": False,
"networks": [{
"network": "string",
}],
},
},
networks=[{
"network": "string",
}])
const zeroTrustDnsLocationResource = new cloudflare.ZeroTrustDnsLocation("zeroTrustDnsLocationResource", {
accountId: "string",
name: "string",
clientDefault: false,
dnsDestinationIpsId: "string",
dnsDestinationIpv6BlockId: "string",
ecsSupport: false,
endpoints: {
doh: {
enabled: false,
authenticationEnabled: false,
networks: [{
network: "string",
}],
requireToken: false,
},
dot: {
enabled: false,
authenticationEnabled: false,
networks: [{
network: "string",
}],
requireToken: false,
},
ipv4: {
enabled: false,
authenticationEnabled: false,
},
ipv6: {
enabled: false,
authenticationEnabled: false,
networks: [{
network: "string",
}],
},
},
networks: [{
network: "string",
}],
});
type: cloudflare:ZeroTrustDnsLocation
properties:
accountId: string
clientDefault: false
dnsDestinationIpsId: string
dnsDestinationIpv6BlockId: string
ecsSupport: false
endpoints:
doh:
authenticationEnabled: false
enabled: false
networks:
- network: string
requireToken: false
dot:
authenticationEnabled: false
enabled: false
networks:
- network: string
requireToken: false
ipv4:
authenticationEnabled: false
enabled: false
ipv6:
authenticationEnabled: false
enabled: false
networks:
- network: string
name: string
networks:
- network: string
ZeroTrustDnsLocation 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 ZeroTrustDnsLocation resource accepts the following input properties:
- Account
Id string - The account identifier to target for the resource.
- Name string
- Name of the teams location.
- Client
Default bool - Indicator that this is the default location.
- Dns
Destination stringIps Id - IPv4 binding assigned to this location.
- Dns
Destination stringIpv6Block Id - IPv6 block binding assigned to this location.
- Ecs
Support bool - Indicator that this location needs to resolve EDNS queries.
- Endpoints
Zero
Trust Dns Location Endpoints - Endpoints assigned to this location.
- Networks
List<Zero
Trust Dns Location Network> - The networks CIDRs that comprise the location.
- Account
Id string - The account identifier to target for the resource.
- Name string
- Name of the teams location.
- Client
Default bool - Indicator that this is the default location.
- Dns
Destination stringIps Id - IPv4 binding assigned to this location.
- Dns
Destination stringIpv6Block Id - IPv6 block binding assigned to this location.
- Ecs
Support bool - Indicator that this location needs to resolve EDNS queries.
- Endpoints
Zero
Trust Dns Location Endpoints Args - Endpoints assigned to this location.
- Networks
[]Zero
Trust Dns Location Network Args - The networks CIDRs that comprise the location.
- account
Id String - The account identifier to target for the resource.
- name String
- Name of the teams location.
- client
Default Boolean - Indicator that this is the default location.
- dns
Destination StringIps Id - IPv4 binding assigned to this location.
- dns
Destination StringIpv6Block Id - IPv6 block binding assigned to this location.
- ecs
Support Boolean - Indicator that this location needs to resolve EDNS queries.
- endpoints
Zero
Trust Dns Location Endpoints - Endpoints assigned to this location.
- networks
List<Zero
Trust Dns Location Network> - The networks CIDRs that comprise the location.
- account
Id string - The account identifier to target for the resource.
- name string
- Name of the teams location.
- client
Default boolean - Indicator that this is the default location.
- dns
Destination stringIps Id - IPv4 binding assigned to this location.
- dns
Destination stringIpv6Block Id - IPv6 block binding assigned to this location.
- ecs
Support boolean - Indicator that this location needs to resolve EDNS queries.
- endpoints
Zero
Trust Dns Location Endpoints - Endpoints assigned to this location.
- networks
Zero
Trust Dns Location Network[] - The networks CIDRs that comprise the location.
- account_
id str - The account identifier to target for the resource.
- name str
- Name of the teams location.
- client_
default bool - Indicator that this is the default location.
- dns_
destination_ strips_ id - IPv4 binding assigned to this location.
- dns_
destination_ stripv6_ block_ id - IPv6 block binding assigned to this location.
- ecs_
support bool - Indicator that this location needs to resolve EDNS queries.
- endpoints
Zero
Trust Dns Location Endpoints Args - Endpoints assigned to this location.
- networks
Sequence[Zero
Trust Dns Location Network Args] - The networks CIDRs that comprise the location.
- account
Id String - The account identifier to target for the resource.
- name String
- Name of the teams location.
- client
Default Boolean - Indicator that this is the default location.
- dns
Destination StringIps Id - IPv4 binding assigned to this location.
- dns
Destination StringIpv6Block Id - IPv6 block binding assigned to this location.
- ecs
Support Boolean - Indicator that this location needs to resolve EDNS queries.
- endpoints Property Map
- Endpoints assigned to this location.
- networks List<Property Map>
- The networks CIDRs that comprise the location.
Outputs
All input properties are implicitly available as output properties. Additionally, the ZeroTrustDnsLocation resource produces the following output properties:
- Anonymized
Logs boolEnabled - Indicator that anonymized logs are enabled.
- Doh
Subdomain string - The FQDN that DoH clients should be pointed at.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip string
- Client IP address.
- Ipv4Destination string
- IPv4 to direct all IPv4 DNS queries to.
- Ipv4Destination
Backup string - Backup IPv4 to direct all IPv4 DNS queries to.
- Anonymized
Logs boolEnabled - Indicator that anonymized logs are enabled.
- Doh
Subdomain string - The FQDN that DoH clients should be pointed at.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip string
- Client IP address.
- Ipv4Destination string
- IPv4 to direct all IPv4 DNS queries to.
- Ipv4Destination
Backup string - Backup IPv4 to direct all IPv4 DNS queries to.
- anonymized
Logs BooleanEnabled - Indicator that anonymized logs are enabled.
- doh
Subdomain String - The FQDN that DoH clients should be pointed at.
- id String
- The provider-assigned unique ID for this managed resource.
- ip String
- Client IP address.
- ipv4Destination String
- IPv4 to direct all IPv4 DNS queries to.
- ipv4Destination
Backup String - Backup IPv4 to direct all IPv4 DNS queries to.
- anonymized
Logs booleanEnabled - Indicator that anonymized logs are enabled.
- doh
Subdomain string - The FQDN that DoH clients should be pointed at.
- id string
- The provider-assigned unique ID for this managed resource.
- ip string
- Client IP address.
- ipv4Destination string
- IPv4 to direct all IPv4 DNS queries to.
- ipv4Destination
Backup string - Backup IPv4 to direct all IPv4 DNS queries to.
- anonymized_
logs_ boolenabled - Indicator that anonymized logs are enabled.
- doh_
subdomain str - The FQDN that DoH clients should be pointed at.
- id str
- The provider-assigned unique ID for this managed resource.
- ip str
- Client IP address.
- ipv4_
destination str - IPv4 to direct all IPv4 DNS queries to.
- ipv4_
destination_ strbackup - Backup IPv4 to direct all IPv4 DNS queries to.
- anonymized
Logs BooleanEnabled - Indicator that anonymized logs are enabled.
- doh
Subdomain String - The FQDN that DoH clients should be pointed at.
- id String
- The provider-assigned unique ID for this managed resource.
- ip String
- Client IP address.
- ipv4Destination String
- IPv4 to direct all IPv4 DNS queries to.
- ipv4Destination
Backup String - Backup IPv4 to direct all IPv4 DNS queries to.
Look up Existing ZeroTrustDnsLocation Resource
Get an existing ZeroTrustDnsLocation 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?: ZeroTrustDnsLocationState, opts?: CustomResourceOptions): ZeroTrustDnsLocation
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
anonymized_logs_enabled: Optional[bool] = None,
client_default: Optional[bool] = None,
dns_destination_ips_id: Optional[str] = None,
dns_destination_ipv6_block_id: Optional[str] = None,
doh_subdomain: Optional[str] = None,
ecs_support: Optional[bool] = None,
endpoints: Optional[ZeroTrustDnsLocationEndpointsArgs] = None,
ip: Optional[str] = None,
ipv4_destination: Optional[str] = None,
ipv4_destination_backup: Optional[str] = None,
name: Optional[str] = None,
networks: Optional[Sequence[ZeroTrustDnsLocationNetworkArgs]] = None) -> ZeroTrustDnsLocation
func GetZeroTrustDnsLocation(ctx *Context, name string, id IDInput, state *ZeroTrustDnsLocationState, opts ...ResourceOption) (*ZeroTrustDnsLocation, error)
public static ZeroTrustDnsLocation Get(string name, Input<string> id, ZeroTrustDnsLocationState? state, CustomResourceOptions? opts = null)
public static ZeroTrustDnsLocation get(String name, Output<String> id, ZeroTrustDnsLocationState state, CustomResourceOptions options)
resources: _: type: cloudflare:ZeroTrustDnsLocation get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Id string - The account identifier to target for the resource.
- Anonymized
Logs boolEnabled - Indicator that anonymized logs are enabled.
- Client
Default bool - Indicator that this is the default location.
- Dns
Destination stringIps Id - IPv4 binding assigned to this location.
- Dns
Destination stringIpv6Block Id - IPv6 block binding assigned to this location.
- Doh
Subdomain string - The FQDN that DoH clients should be pointed at.
- Ecs
Support bool - Indicator that this location needs to resolve EDNS queries.
- Endpoints
Zero
Trust Dns Location Endpoints - Endpoints assigned to this location.
- Ip string
- Client IP address.
- Ipv4Destination string
- IPv4 to direct all IPv4 DNS queries to.
- Ipv4Destination
Backup string - Backup IPv4 to direct all IPv4 DNS queries to.
- Name string
- Name of the teams location.
- Networks
List<Zero
Trust Dns Location Network> - The networks CIDRs that comprise the location.
- Account
Id string - The account identifier to target for the resource.
- Anonymized
Logs boolEnabled - Indicator that anonymized logs are enabled.
- Client
Default bool - Indicator that this is the default location.
- Dns
Destination stringIps Id - IPv4 binding assigned to this location.
- Dns
Destination stringIpv6Block Id - IPv6 block binding assigned to this location.
- Doh
Subdomain string - The FQDN that DoH clients should be pointed at.
- Ecs
Support bool - Indicator that this location needs to resolve EDNS queries.
- Endpoints
Zero
Trust Dns Location Endpoints Args - Endpoints assigned to this location.
- Ip string
- Client IP address.
- Ipv4Destination string
- IPv4 to direct all IPv4 DNS queries to.
- Ipv4Destination
Backup string - Backup IPv4 to direct all IPv4 DNS queries to.
- Name string
- Name of the teams location.
- Networks
[]Zero
Trust Dns Location Network Args - The networks CIDRs that comprise the location.
- account
Id String - The account identifier to target for the resource.
- anonymized
Logs BooleanEnabled - Indicator that anonymized logs are enabled.
- client
Default Boolean - Indicator that this is the default location.
- dns
Destination StringIps Id - IPv4 binding assigned to this location.
- dns
Destination StringIpv6Block Id - IPv6 block binding assigned to this location.
- doh
Subdomain String - The FQDN that DoH clients should be pointed at.
- ecs
Support Boolean - Indicator that this location needs to resolve EDNS queries.
- endpoints
Zero
Trust Dns Location Endpoints - Endpoints assigned to this location.
- ip String
- Client IP address.
- ipv4Destination String
- IPv4 to direct all IPv4 DNS queries to.
- ipv4Destination
Backup String - Backup IPv4 to direct all IPv4 DNS queries to.
- name String
- Name of the teams location.
- networks
List<Zero
Trust Dns Location Network> - The networks CIDRs that comprise the location.
- account
Id string - The account identifier to target for the resource.
- anonymized
Logs booleanEnabled - Indicator that anonymized logs are enabled.
- client
Default boolean - Indicator that this is the default location.
- dns
Destination stringIps Id - IPv4 binding assigned to this location.
- dns
Destination stringIpv6Block Id - IPv6 block binding assigned to this location.
- doh
Subdomain string - The FQDN that DoH clients should be pointed at.
- ecs
Support boolean - Indicator that this location needs to resolve EDNS queries.
- endpoints
Zero
Trust Dns Location Endpoints - Endpoints assigned to this location.
- ip string
- Client IP address.
- ipv4Destination string
- IPv4 to direct all IPv4 DNS queries to.
- ipv4Destination
Backup string - Backup IPv4 to direct all IPv4 DNS queries to.
- name string
- Name of the teams location.
- networks
Zero
Trust Dns Location Network[] - The networks CIDRs that comprise the location.
- account_
id str - The account identifier to target for the resource.
- anonymized_
logs_ boolenabled - Indicator that anonymized logs are enabled.
- client_
default bool - Indicator that this is the default location.
- dns_
destination_ strips_ id - IPv4 binding assigned to this location.
- dns_
destination_ stripv6_ block_ id - IPv6 block binding assigned to this location.
- doh_
subdomain str - The FQDN that DoH clients should be pointed at.
- ecs_
support bool - Indicator that this location needs to resolve EDNS queries.
- endpoints
Zero
Trust Dns Location Endpoints Args - Endpoints assigned to this location.
- ip str
- Client IP address.
- ipv4_
destination str - IPv4 to direct all IPv4 DNS queries to.
- ipv4_
destination_ strbackup - Backup IPv4 to direct all IPv4 DNS queries to.
- name str
- Name of the teams location.
- networks
Sequence[Zero
Trust Dns Location Network Args] - The networks CIDRs that comprise the location.
- account
Id String - The account identifier to target for the resource.
- anonymized
Logs BooleanEnabled - Indicator that anonymized logs are enabled.
- client
Default Boolean - Indicator that this is the default location.
- dns
Destination StringIps Id - IPv4 binding assigned to this location.
- dns
Destination StringIpv6Block Id - IPv6 block binding assigned to this location.
- doh
Subdomain String - The FQDN that DoH clients should be pointed at.
- ecs
Support Boolean - Indicator that this location needs to resolve EDNS queries.
- endpoints Property Map
- Endpoints assigned to this location.
- ip String
- Client IP address.
- ipv4Destination String
- IPv4 to direct all IPv4 DNS queries to.
- ipv4Destination
Backup String - Backup IPv4 to direct all IPv4 DNS queries to.
- name String
- Name of the teams location.
- networks List<Property Map>
- The networks CIDRs that comprise the location.
Supporting Types
ZeroTrustDnsLocationEndpoints, ZeroTrustDnsLocationEndpointsArgs
ZeroTrustDnsLocationEndpointsDoh, ZeroTrustDnsLocationEndpointsDohArgs
- enabled Boolean
- authentication
Enabled Boolean - networks
List<Zero
Trust Dns Location Endpoints Doh Network> - require
Token Boolean
- enabled boolean
- authentication
Enabled boolean - networks
Zero
Trust Dns Location Endpoints Doh Network[] - require
Token boolean
- enabled Boolean
- authentication
Enabled Boolean - networks List<Property Map>
- require
Token Boolean
ZeroTrustDnsLocationEndpointsDohNetwork, ZeroTrustDnsLocationEndpointsDohNetworkArgs
- Network string
- CIDR notation representation of the network IP.
- Network string
- CIDR notation representation of the network IP.
- network String
- CIDR notation representation of the network IP.
- network string
- CIDR notation representation of the network IP.
- network str
- CIDR notation representation of the network IP.
- network String
- CIDR notation representation of the network IP.
ZeroTrustDnsLocationEndpointsDot, ZeroTrustDnsLocationEndpointsDotArgs
- enabled Boolean
- authentication
Enabled Boolean - networks
List<Zero
Trust Dns Location Endpoints Dot Network> - require
Token Boolean
- enabled boolean
- authentication
Enabled boolean - networks
Zero
Trust Dns Location Endpoints Dot Network[] - require
Token boolean
- enabled Boolean
- authentication
Enabled Boolean - networks List<Property Map>
- require
Token Boolean
ZeroTrustDnsLocationEndpointsDotNetwork, ZeroTrustDnsLocationEndpointsDotNetworkArgs
- Network string
- CIDR notation representation of the network IP.
- Network string
- CIDR notation representation of the network IP.
- network String
- CIDR notation representation of the network IP.
- network string
- CIDR notation representation of the network IP.
- network str
- CIDR notation representation of the network IP.
- network String
- CIDR notation representation of the network IP.
ZeroTrustDnsLocationEndpointsIpv4, ZeroTrustDnsLocationEndpointsIpv4Args
- Enabled bool
- Authentication
Enabled bool
- Enabled bool
- Authentication
Enabled bool
- enabled Boolean
- authentication
Enabled Boolean
- enabled boolean
- authentication
Enabled boolean
- enabled bool
- authentication_
enabled bool
- enabled Boolean
- authentication
Enabled Boolean
ZeroTrustDnsLocationEndpointsIpv6, ZeroTrustDnsLocationEndpointsIpv6Args
- enabled Boolean
- authentication
Enabled Boolean - networks List<Property Map>
ZeroTrustDnsLocationEndpointsIpv6Network, ZeroTrustDnsLocationEndpointsIpv6NetworkArgs
- Network string
- CIDR notation representation of the network IP.
- Network string
- CIDR notation representation of the network IP.
- network String
- CIDR notation representation of the network IP.
- network string
- CIDR notation representation of the network IP.
- network str
- CIDR notation representation of the network IP.
- network String
- CIDR notation representation of the network IP.
ZeroTrustDnsLocationNetwork, ZeroTrustDnsLocationNetworkArgs
- Network string
- CIDR notation representation of the network IP.
- Network string
- CIDR notation representation of the network IP.
- network String
- CIDR notation representation of the network IP.
- network string
- CIDR notation representation of the network IP.
- network str
- CIDR notation representation of the network IP.
- network String
- CIDR notation representation of the network IP.
Import
$ pulumi import cloudflare:index/zeroTrustDnsLocation:ZeroTrustDnsLocation example <account_id>/<teams_location_id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Cloudflare pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudflare
Terraform Provider.