1. Packages
  2. Cloudflare Provider
  3. API Docs
  4. ZoneDnsSettings
Cloudflare v6.1.0 published on Friday, Apr 18, 2025 by Pulumi

cloudflare.ZoneDnsSettings

Explore with Pulumi AI

Example Usage

Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
  exampleZoneDnsSettings:
    type: cloudflare:ZoneDnsSettings
    name: example_zone_dns_settings
    properties:
      zoneId: 023e105f4ecef8ad9ca31a8372d0c353
      flattenAllCnames: false
      foundationDns: false
      internalDns:
        reference_zone_id: reference_zone_id
      multiProvider: false
      nameservers:
        type: cloudflare.standard
        ns_set: 1
      nsTtl: 86400
      secondaryOverrides: false
      soa:
        expire: 604800
        min_ttl: 1800
        mname: kristina.ns.cloudflare.com
        refresh: 10000
        retry: 2400
        rname: admin.example.com
        ttl: 3600
      zoneMode: dns_only
Copy

Create ZoneDnsSettings Resource

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

Constructor syntax

new ZoneDnsSettings(name: string, args: ZoneDnsSettingsArgs, opts?: CustomResourceOptions);
@overload
def ZoneDnsSettings(resource_name: str,
                    args: ZoneDnsSettingsArgs,
                    opts: Optional[ResourceOptions] = None)

@overload
def ZoneDnsSettings(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    zone_id: Optional[str] = None,
                    flatten_all_cnames: Optional[bool] = None,
                    foundation_dns: Optional[bool] = None,
                    internal_dns: Optional[ZoneDnsSettingsInternalDnsArgs] = None,
                    multi_provider: Optional[bool] = None,
                    nameservers: Optional[ZoneDnsSettingsNameserversArgs] = None,
                    ns_ttl: Optional[float] = None,
                    secondary_overrides: Optional[bool] = None,
                    soa: Optional[ZoneDnsSettingsSoaArgs] = None,
                    zone_mode: Optional[str] = None)
func NewZoneDnsSettings(ctx *Context, name string, args ZoneDnsSettingsArgs, opts ...ResourceOption) (*ZoneDnsSettings, error)
public ZoneDnsSettings(string name, ZoneDnsSettingsArgs args, CustomResourceOptions? opts = null)
public ZoneDnsSettings(String name, ZoneDnsSettingsArgs args)
public ZoneDnsSettings(String name, ZoneDnsSettingsArgs args, CustomResourceOptions options)
type: cloudflare:ZoneDnsSettings
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ZoneDnsSettingsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ZoneDnsSettingsArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ZoneDnsSettingsArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ZoneDnsSettingsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ZoneDnsSettingsArgs
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 zoneDnsSettingsResource = new Cloudflare.ZoneDnsSettings("zoneDnsSettingsResource", new()
{
    ZoneId = "string",
    FlattenAllCnames = false,
    FoundationDns = false,
    InternalDns = new Cloudflare.Inputs.ZoneDnsSettingsInternalDnsArgs
    {
        ReferenceZoneId = "string",
    },
    MultiProvider = false,
    Nameservers = new Cloudflare.Inputs.ZoneDnsSettingsNameserversArgs
    {
        Type = "string",
        NsSet = 0,
    },
    NsTtl = 0,
    SecondaryOverrides = false,
    Soa = new Cloudflare.Inputs.ZoneDnsSettingsSoaArgs
    {
        Expire = 0,
        MinTtl = 0,
        Mname = "string",
        Refresh = 0,
        Retry = 0,
        Rname = "string",
        Ttl = 0,
    },
    ZoneMode = "string",
});
Copy
example, err := cloudflare.NewZoneDnsSettings(ctx, "zoneDnsSettingsResource", &cloudflare.ZoneDnsSettingsArgs{
	ZoneId:           pulumi.String("string"),
	FlattenAllCnames: pulumi.Bool(false),
	FoundationDns:    pulumi.Bool(false),
	InternalDns: &cloudflare.ZoneDnsSettingsInternalDnsArgs{
		ReferenceZoneId: pulumi.String("string"),
	},
	MultiProvider: pulumi.Bool(false),
	Nameservers: &cloudflare.ZoneDnsSettingsNameserversArgs{
		Type:  pulumi.String("string"),
		NsSet: pulumi.Int(0),
	},
	NsTtl:              pulumi.Float64(0),
	SecondaryOverrides: pulumi.Bool(false),
	Soa: &cloudflare.ZoneDnsSettingsSoaArgs{
		Expire:  pulumi.Float64(0),
		MinTtl:  pulumi.Float64(0),
		Mname:   pulumi.String("string"),
		Refresh: pulumi.Float64(0),
		Retry:   pulumi.Float64(0),
		Rname:   pulumi.String("string"),
		Ttl:     pulumi.Float64(0),
	},
	ZoneMode: pulumi.String("string"),
})
Copy
var zoneDnsSettingsResource = new ZoneDnsSettings("zoneDnsSettingsResource", ZoneDnsSettingsArgs.builder()
    .zoneId("string")
    .flattenAllCnames(false)
    .foundationDns(false)
    .internalDns(ZoneDnsSettingsInternalDnsArgs.builder()
        .referenceZoneId("string")
        .build())
    .multiProvider(false)
    .nameservers(ZoneDnsSettingsNameserversArgs.builder()
        .type("string")
        .nsSet(0)
        .build())
    .nsTtl(0)
    .secondaryOverrides(false)
    .soa(ZoneDnsSettingsSoaArgs.builder()
        .expire(0)
        .minTtl(0)
        .mname("string")
        .refresh(0)
        .retry(0)
        .rname("string")
        .ttl(0)
        .build())
    .zoneMode("string")
    .build());
Copy
zone_dns_settings_resource = cloudflare.ZoneDnsSettings("zoneDnsSettingsResource",
    zone_id="string",
    flatten_all_cnames=False,
    foundation_dns=False,
    internal_dns={
        "reference_zone_id": "string",
    },
    multi_provider=False,
    nameservers={
        "type": "string",
        "ns_set": 0,
    },
    ns_ttl=0,
    secondary_overrides=False,
    soa={
        "expire": 0,
        "min_ttl": 0,
        "mname": "string",
        "refresh": 0,
        "retry": 0,
        "rname": "string",
        "ttl": 0,
    },
    zone_mode="string")
Copy
const zoneDnsSettingsResource = new cloudflare.ZoneDnsSettings("zoneDnsSettingsResource", {
    zoneId: "string",
    flattenAllCnames: false,
    foundationDns: false,
    internalDns: {
        referenceZoneId: "string",
    },
    multiProvider: false,
    nameservers: {
        type: "string",
        nsSet: 0,
    },
    nsTtl: 0,
    secondaryOverrides: false,
    soa: {
        expire: 0,
        minTtl: 0,
        mname: "string",
        refresh: 0,
        retry: 0,
        rname: "string",
        ttl: 0,
    },
    zoneMode: "string",
});
Copy
type: cloudflare:ZoneDnsSettings
properties:
    flattenAllCnames: false
    foundationDns: false
    internalDns:
        referenceZoneId: string
    multiProvider: false
    nameservers:
        nsSet: 0
        type: string
    nsTtl: 0
    secondaryOverrides: false
    soa:
        expire: 0
        minTtl: 0
        mname: string
        refresh: 0
        retry: 0
        rname: string
        ttl: 0
    zoneId: string
    zoneMode: string
Copy

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

ZoneId This property is required. string
Identifier
FlattenAllCnames bool
Whether to flatten all CNAME records in the zone. Note that, due to DNS limitations, a CNAME record at the zone apex will always be flattened.
FoundationDns bool
Whether to enable Foundation DNS Advanced Nameservers on the zone.
InternalDns ZoneDnsSettingsInternalDns
Settings for this internal zone.
MultiProvider bool
Whether to enable multi-provider DNS, which causes Cloudflare to activate the zone even when non-Cloudflare NS records exist, and to respect NS records at the zone apex during outbound zone transfers.
Nameservers ZoneDnsSettingsNameservers
Settings determining the nameservers through which the zone should be available.
NsTtl double
The time to live (TTL) of the zone's nameserver (NS) records.
SecondaryOverrides bool
Allows a Secondary DNS zone to use (proxied) override records and CNAME flattening at the zone apex.
Soa ZoneDnsSettingsSoa
Components of the zone's SOA record.
ZoneMode string
Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
ZoneId This property is required. string
Identifier
FlattenAllCnames bool
Whether to flatten all CNAME records in the zone. Note that, due to DNS limitations, a CNAME record at the zone apex will always be flattened.
FoundationDns bool
Whether to enable Foundation DNS Advanced Nameservers on the zone.
InternalDns ZoneDnsSettingsInternalDnsArgs
Settings for this internal zone.
MultiProvider bool
Whether to enable multi-provider DNS, which causes Cloudflare to activate the zone even when non-Cloudflare NS records exist, and to respect NS records at the zone apex during outbound zone transfers.
Nameservers ZoneDnsSettingsNameserversArgs
Settings determining the nameservers through which the zone should be available.
NsTtl float64
The time to live (TTL) of the zone's nameserver (NS) records.
SecondaryOverrides bool
Allows a Secondary DNS zone to use (proxied) override records and CNAME flattening at the zone apex.
Soa ZoneDnsSettingsSoaArgs
Components of the zone's SOA record.
ZoneMode string
Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
zoneId This property is required. String
Identifier
flattenAllCnames Boolean
Whether to flatten all CNAME records in the zone. Note that, due to DNS limitations, a CNAME record at the zone apex will always be flattened.
foundationDns Boolean
Whether to enable Foundation DNS Advanced Nameservers on the zone.
internalDns ZoneDnsSettingsInternalDns
Settings for this internal zone.
multiProvider Boolean
Whether to enable multi-provider DNS, which causes Cloudflare to activate the zone even when non-Cloudflare NS records exist, and to respect NS records at the zone apex during outbound zone transfers.
nameservers ZoneDnsSettingsNameservers
Settings determining the nameservers through which the zone should be available.
nsTtl Double
The time to live (TTL) of the zone's nameserver (NS) records.
secondaryOverrides Boolean
Allows a Secondary DNS zone to use (proxied) override records and CNAME flattening at the zone apex.
soa ZoneDnsSettingsSoa
Components of the zone's SOA record.
zoneMode String
Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
zoneId This property is required. string
Identifier
flattenAllCnames boolean
Whether to flatten all CNAME records in the zone. Note that, due to DNS limitations, a CNAME record at the zone apex will always be flattened.
foundationDns boolean
Whether to enable Foundation DNS Advanced Nameservers on the zone.
internalDns ZoneDnsSettingsInternalDns
Settings for this internal zone.
multiProvider boolean
Whether to enable multi-provider DNS, which causes Cloudflare to activate the zone even when non-Cloudflare NS records exist, and to respect NS records at the zone apex during outbound zone transfers.
nameservers ZoneDnsSettingsNameservers
Settings determining the nameservers through which the zone should be available.
nsTtl number
The time to live (TTL) of the zone's nameserver (NS) records.
secondaryOverrides boolean
Allows a Secondary DNS zone to use (proxied) override records and CNAME flattening at the zone apex.
soa ZoneDnsSettingsSoa
Components of the zone's SOA record.
zoneMode string
Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
zone_id This property is required. str
Identifier
flatten_all_cnames bool
Whether to flatten all CNAME records in the zone. Note that, due to DNS limitations, a CNAME record at the zone apex will always be flattened.
foundation_dns bool
Whether to enable Foundation DNS Advanced Nameservers on the zone.
internal_dns ZoneDnsSettingsInternalDnsArgs
Settings for this internal zone.
multi_provider bool
Whether to enable multi-provider DNS, which causes Cloudflare to activate the zone even when non-Cloudflare NS records exist, and to respect NS records at the zone apex during outbound zone transfers.
nameservers ZoneDnsSettingsNameserversArgs
Settings determining the nameservers through which the zone should be available.
ns_ttl float
The time to live (TTL) of the zone's nameserver (NS) records.
secondary_overrides bool
Allows a Secondary DNS zone to use (proxied) override records and CNAME flattening at the zone apex.
soa ZoneDnsSettingsSoaArgs
Components of the zone's SOA record.
zone_mode str
Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
zoneId This property is required. String
Identifier
flattenAllCnames Boolean
Whether to flatten all CNAME records in the zone. Note that, due to DNS limitations, a CNAME record at the zone apex will always be flattened.
foundationDns Boolean
Whether to enable Foundation DNS Advanced Nameservers on the zone.
internalDns Property Map
Settings for this internal zone.
multiProvider Boolean
Whether to enable multi-provider DNS, which causes Cloudflare to activate the zone even when non-Cloudflare NS records exist, and to respect NS records at the zone apex during outbound zone transfers.
nameservers Property Map
Settings determining the nameservers through which the zone should be available.
nsTtl Number
The time to live (TTL) of the zone's nameserver (NS) records.
secondaryOverrides Boolean
Allows a Secondary DNS zone to use (proxied) override records and CNAME flattening at the zone apex.
soa Property Map
Components of the zone's SOA record.
zoneMode String
Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".

Outputs

All input properties are implicitly available as output properties. Additionally, the ZoneDnsSettings 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 str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing ZoneDnsSettings Resource

Get an existing ZoneDnsSettings 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?: ZoneDnsSettingsState, opts?: CustomResourceOptions): ZoneDnsSettings
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        flatten_all_cnames: Optional[bool] = None,
        foundation_dns: Optional[bool] = None,
        internal_dns: Optional[ZoneDnsSettingsInternalDnsArgs] = None,
        multi_provider: Optional[bool] = None,
        nameservers: Optional[ZoneDnsSettingsNameserversArgs] = None,
        ns_ttl: Optional[float] = None,
        secondary_overrides: Optional[bool] = None,
        soa: Optional[ZoneDnsSettingsSoaArgs] = None,
        zone_id: Optional[str] = None,
        zone_mode: Optional[str] = None) -> ZoneDnsSettings
func GetZoneDnsSettings(ctx *Context, name string, id IDInput, state *ZoneDnsSettingsState, opts ...ResourceOption) (*ZoneDnsSettings, error)
public static ZoneDnsSettings Get(string name, Input<string> id, ZoneDnsSettingsState? state, CustomResourceOptions? opts = null)
public static ZoneDnsSettings get(String name, Output<String> id, ZoneDnsSettingsState state, CustomResourceOptions options)
resources:  _:    type: cloudflare:ZoneDnsSettings    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
FlattenAllCnames bool
Whether to flatten all CNAME records in the zone. Note that, due to DNS limitations, a CNAME record at the zone apex will always be flattened.
FoundationDns bool
Whether to enable Foundation DNS Advanced Nameservers on the zone.
InternalDns ZoneDnsSettingsInternalDns
Settings for this internal zone.
MultiProvider bool
Whether to enable multi-provider DNS, which causes Cloudflare to activate the zone even when non-Cloudflare NS records exist, and to respect NS records at the zone apex during outbound zone transfers.
Nameservers ZoneDnsSettingsNameservers
Settings determining the nameservers through which the zone should be available.
NsTtl double
The time to live (TTL) of the zone's nameserver (NS) records.
SecondaryOverrides bool
Allows a Secondary DNS zone to use (proxied) override records and CNAME flattening at the zone apex.
Soa ZoneDnsSettingsSoa
Components of the zone's SOA record.
ZoneId string
Identifier
ZoneMode string
Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
FlattenAllCnames bool
Whether to flatten all CNAME records in the zone. Note that, due to DNS limitations, a CNAME record at the zone apex will always be flattened.
FoundationDns bool
Whether to enable Foundation DNS Advanced Nameservers on the zone.
InternalDns ZoneDnsSettingsInternalDnsArgs
Settings for this internal zone.
MultiProvider bool
Whether to enable multi-provider DNS, which causes Cloudflare to activate the zone even when non-Cloudflare NS records exist, and to respect NS records at the zone apex during outbound zone transfers.
Nameservers ZoneDnsSettingsNameserversArgs
Settings determining the nameservers through which the zone should be available.
NsTtl float64
The time to live (TTL) of the zone's nameserver (NS) records.
SecondaryOverrides bool
Allows a Secondary DNS zone to use (proxied) override records and CNAME flattening at the zone apex.
Soa ZoneDnsSettingsSoaArgs
Components of the zone's SOA record.
ZoneId string
Identifier
ZoneMode string
Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
flattenAllCnames Boolean
Whether to flatten all CNAME records in the zone. Note that, due to DNS limitations, a CNAME record at the zone apex will always be flattened.
foundationDns Boolean
Whether to enable Foundation DNS Advanced Nameservers on the zone.
internalDns ZoneDnsSettingsInternalDns
Settings for this internal zone.
multiProvider Boolean
Whether to enable multi-provider DNS, which causes Cloudflare to activate the zone even when non-Cloudflare NS records exist, and to respect NS records at the zone apex during outbound zone transfers.
nameservers ZoneDnsSettingsNameservers
Settings determining the nameservers through which the zone should be available.
nsTtl Double
The time to live (TTL) of the zone's nameserver (NS) records.
secondaryOverrides Boolean
Allows a Secondary DNS zone to use (proxied) override records and CNAME flattening at the zone apex.
soa ZoneDnsSettingsSoa
Components of the zone's SOA record.
zoneId String
Identifier
zoneMode String
Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
flattenAllCnames boolean
Whether to flatten all CNAME records in the zone. Note that, due to DNS limitations, a CNAME record at the zone apex will always be flattened.
foundationDns boolean
Whether to enable Foundation DNS Advanced Nameservers on the zone.
internalDns ZoneDnsSettingsInternalDns
Settings for this internal zone.
multiProvider boolean
Whether to enable multi-provider DNS, which causes Cloudflare to activate the zone even when non-Cloudflare NS records exist, and to respect NS records at the zone apex during outbound zone transfers.
nameservers ZoneDnsSettingsNameservers
Settings determining the nameservers through which the zone should be available.
nsTtl number
The time to live (TTL) of the zone's nameserver (NS) records.
secondaryOverrides boolean
Allows a Secondary DNS zone to use (proxied) override records and CNAME flattening at the zone apex.
soa ZoneDnsSettingsSoa
Components of the zone's SOA record.
zoneId string
Identifier
zoneMode string
Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
flatten_all_cnames bool
Whether to flatten all CNAME records in the zone. Note that, due to DNS limitations, a CNAME record at the zone apex will always be flattened.
foundation_dns bool
Whether to enable Foundation DNS Advanced Nameservers on the zone.
internal_dns ZoneDnsSettingsInternalDnsArgs
Settings for this internal zone.
multi_provider bool
Whether to enable multi-provider DNS, which causes Cloudflare to activate the zone even when non-Cloudflare NS records exist, and to respect NS records at the zone apex during outbound zone transfers.
nameservers ZoneDnsSettingsNameserversArgs
Settings determining the nameservers through which the zone should be available.
ns_ttl float
The time to live (TTL) of the zone's nameserver (NS) records.
secondary_overrides bool
Allows a Secondary DNS zone to use (proxied) override records and CNAME flattening at the zone apex.
soa ZoneDnsSettingsSoaArgs
Components of the zone's SOA record.
zone_id str
Identifier
zone_mode str
Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
flattenAllCnames Boolean
Whether to flatten all CNAME records in the zone. Note that, due to DNS limitations, a CNAME record at the zone apex will always be flattened.
foundationDns Boolean
Whether to enable Foundation DNS Advanced Nameservers on the zone.
internalDns Property Map
Settings for this internal zone.
multiProvider Boolean
Whether to enable multi-provider DNS, which causes Cloudflare to activate the zone even when non-Cloudflare NS records exist, and to respect NS records at the zone apex during outbound zone transfers.
nameservers Property Map
Settings determining the nameservers through which the zone should be available.
nsTtl Number
The time to live (TTL) of the zone's nameserver (NS) records.
secondaryOverrides Boolean
Allows a Secondary DNS zone to use (proxied) override records and CNAME flattening at the zone apex.
soa Property Map
Components of the zone's SOA record.
zoneId String
Identifier
zoneMode String
Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".

Supporting Types

ZoneDnsSettingsInternalDns
, ZoneDnsSettingsInternalDnsArgs

ReferenceZoneId string
The ID of the zone to fallback to.
ReferenceZoneId string
The ID of the zone to fallback to.
referenceZoneId String
The ID of the zone to fallback to.
referenceZoneId string
The ID of the zone to fallback to.
reference_zone_id str
The ID of the zone to fallback to.
referenceZoneId String
The ID of the zone to fallback to.

ZoneDnsSettingsNameservers
, ZoneDnsSettingsNameserversArgs

Type This property is required. string
Nameserver type Available values: "cloudflare.standard", "custom.account", "custom.tenant", "custom.zone".
NsSet int
Configured nameserver set to be used for this zone
Type This property is required. string
Nameserver type Available values: "cloudflare.standard", "custom.account", "custom.tenant", "custom.zone".
NsSet int
Configured nameserver set to be used for this zone
type This property is required. String
Nameserver type Available values: "cloudflare.standard", "custom.account", "custom.tenant", "custom.zone".
nsSet Integer
Configured nameserver set to be used for this zone
type This property is required. string
Nameserver type Available values: "cloudflare.standard", "custom.account", "custom.tenant", "custom.zone".
nsSet number
Configured nameserver set to be used for this zone
type This property is required. str
Nameserver type Available values: "cloudflare.standard", "custom.account", "custom.tenant", "custom.zone".
ns_set int
Configured nameserver set to be used for this zone
type This property is required. String
Nameserver type Available values: "cloudflare.standard", "custom.account", "custom.tenant", "custom.zone".
nsSet Number
Configured nameserver set to be used for this zone

ZoneDnsSettingsSoa
, ZoneDnsSettingsSoaArgs

Expire This property is required. double
Time in seconds of being unable to query the primary server after which secondary servers should stop serving the zone.
MinTtl This property is required. double
The time to live (TTL) for negative caching of records within the zone.
Mname This property is required. string
The primary nameserver, which may be used for outbound zone transfers.
Refresh This property is required. double
Time in seconds after which secondary servers should re-check the SOA record to see if the zone has been updated.
Retry This property is required. double
Time in seconds after which secondary servers should retry queries after the primary server was unresponsive.
Rname This property is required. string
The email address of the zone administrator, with the first label representing the local part of the email address.
Ttl This property is required. double
The time to live (TTL) of the SOA record itself.
Expire This property is required. float64
Time in seconds of being unable to query the primary server after which secondary servers should stop serving the zone.
MinTtl This property is required. float64
The time to live (TTL) for negative caching of records within the zone.
Mname This property is required. string
The primary nameserver, which may be used for outbound zone transfers.
Refresh This property is required. float64
Time in seconds after which secondary servers should re-check the SOA record to see if the zone has been updated.
Retry This property is required. float64
Time in seconds after which secondary servers should retry queries after the primary server was unresponsive.
Rname This property is required. string
The email address of the zone administrator, with the first label representing the local part of the email address.
Ttl This property is required. float64
The time to live (TTL) of the SOA record itself.
expire This property is required. Double
Time in seconds of being unable to query the primary server after which secondary servers should stop serving the zone.
minTtl This property is required. Double
The time to live (TTL) for negative caching of records within the zone.
mname This property is required. String
The primary nameserver, which may be used for outbound zone transfers.
refresh This property is required. Double
Time in seconds after which secondary servers should re-check the SOA record to see if the zone has been updated.
retry This property is required. Double
Time in seconds after which secondary servers should retry queries after the primary server was unresponsive.
rname This property is required. String
The email address of the zone administrator, with the first label representing the local part of the email address.
ttl This property is required. Double
The time to live (TTL) of the SOA record itself.
expire This property is required. number
Time in seconds of being unable to query the primary server after which secondary servers should stop serving the zone.
minTtl This property is required. number
The time to live (TTL) for negative caching of records within the zone.
mname This property is required. string
The primary nameserver, which may be used for outbound zone transfers.
refresh This property is required. number
Time in seconds after which secondary servers should re-check the SOA record to see if the zone has been updated.
retry This property is required. number
Time in seconds after which secondary servers should retry queries after the primary server was unresponsive.
rname This property is required. string
The email address of the zone administrator, with the first label representing the local part of the email address.
ttl This property is required. number
The time to live (TTL) of the SOA record itself.
expire This property is required. float
Time in seconds of being unable to query the primary server after which secondary servers should stop serving the zone.
min_ttl This property is required. float
The time to live (TTL) for negative caching of records within the zone.
mname This property is required. str
The primary nameserver, which may be used for outbound zone transfers.
refresh This property is required. float
Time in seconds after which secondary servers should re-check the SOA record to see if the zone has been updated.
retry This property is required. float
Time in seconds after which secondary servers should retry queries after the primary server was unresponsive.
rname This property is required. str
The email address of the zone administrator, with the first label representing the local part of the email address.
ttl This property is required. float
The time to live (TTL) of the SOA record itself.
expire This property is required. Number
Time in seconds of being unable to query the primary server after which secondary servers should stop serving the zone.
minTtl This property is required. Number
The time to live (TTL) for negative caching of records within the zone.
mname This property is required. String
The primary nameserver, which may be used for outbound zone transfers.
refresh This property is required. Number
Time in seconds after which secondary servers should re-check the SOA record to see if the zone has been updated.
retry This property is required. Number
Time in seconds after which secondary servers should retry queries after the primary server was unresponsive.
rname This property is required. String
The email address of the zone administrator, with the first label representing the local part of the email address.
ttl This property is required. Number
The time to live (TTL) of the SOA record itself.

Package Details

Repository
Cloudflare pulumi/pulumi-cloudflare
License
Apache-2.0
Notes
This Pulumi package is based on the cloudflare Terraform Provider.