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
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 string
- The unique name of the resource.
- args ZoneDnsSettingsArgs
- 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 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 string
- The unique name of the resource.
- args ZoneDnsSettingsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ZoneDnsSettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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:
- Zone
Id string - Identifier
- Flatten
All boolCnames - 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 ZoneDns Settings Internal Dns - 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
Zone
Dns Settings Nameservers - Settings determining the nameservers through which the zone should be available.
- Ns
Ttl double - 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
Zone
Dns Settings Soa - Components of the zone's SOA record.
- Zone
Mode string - Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
- Zone
Id string - Identifier
- Flatten
All boolCnames - 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 ZoneDns Settings Internal Dns Args - 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
Zone
Dns Settings Nameservers Args - Settings determining the nameservers through which the zone should be available.
- Ns
Ttl float64 - 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
Zone
Dns Settings Soa Args - Components of the zone's SOA record.
- Zone
Mode string - Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
- zone
Id String - Identifier
- flatten
All BooleanCnames - 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 Boolean - Whether to enable Foundation DNS Advanced Nameservers on the zone.
- internal
Dns ZoneDns Settings Internal Dns - Settings for this internal zone.
- multi
Provider 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
Zone
Dns Settings Nameservers - Settings determining the nameservers through which the zone should be available.
- ns
Ttl Double - The time to live (TTL) of the zone's nameserver (NS) records.
- secondary
Overrides Boolean - Allows a Secondary DNS zone to use (proxied) override records and CNAME flattening at the zone apex.
- soa
Zone
Dns Settings Soa - Components of the zone's SOA record.
- zone
Mode String - Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
- zone
Id string - Identifier
- flatten
All booleanCnames - 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 boolean - Whether to enable Foundation DNS Advanced Nameservers on the zone.
- internal
Dns ZoneDns Settings Internal Dns - Settings for this internal zone.
- multi
Provider 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
Zone
Dns Settings Nameservers - Settings determining the nameservers through which the zone should be available.
- ns
Ttl number - The time to live (TTL) of the zone's nameserver (NS) records.
- secondary
Overrides boolean - Allows a Secondary DNS zone to use (proxied) override records and CNAME flattening at the zone apex.
- soa
Zone
Dns Settings Soa - Components of the zone's SOA record.
- zone
Mode string - Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
- zone_
id str - Identifier
- flatten_
all_ boolcnames - 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 ZoneDns Settings Internal Dns Args - 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
Zone
Dns Settings Nameservers Args - 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
Zone
Dns Settings Soa Args - 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".
- zone
Id String - Identifier
- flatten
All BooleanCnames - 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 Boolean - Whether to enable Foundation DNS Advanced Nameservers on the zone.
- internal
Dns Property Map - Settings for this internal zone.
- multi
Provider 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.
- ns
Ttl Number - The time to live (TTL) of the zone's nameserver (NS) records.
- secondary
Overrides 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.
- zone
Mode 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
- 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.
- Flatten
All boolCnames - 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 ZoneDns Settings Internal Dns - 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
Zone
Dns Settings Nameservers - Settings determining the nameservers through which the zone should be available.
- Ns
Ttl double - 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
Zone
Dns Settings Soa - Components of the zone's SOA record.
- Zone
Id string - Identifier
- Zone
Mode string - Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
- Flatten
All boolCnames - 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 ZoneDns Settings Internal Dns Args - 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
Zone
Dns Settings Nameservers Args - Settings determining the nameservers through which the zone should be available.
- Ns
Ttl float64 - 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
Zone
Dns Settings Soa Args - Components of the zone's SOA record.
- Zone
Id string - Identifier
- Zone
Mode string - Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
- flatten
All BooleanCnames - 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 Boolean - Whether to enable Foundation DNS Advanced Nameservers on the zone.
- internal
Dns ZoneDns Settings Internal Dns - Settings for this internal zone.
- multi
Provider 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
Zone
Dns Settings Nameservers - Settings determining the nameservers through which the zone should be available.
- ns
Ttl Double - The time to live (TTL) of the zone's nameserver (NS) records.
- secondary
Overrides Boolean - Allows a Secondary DNS zone to use (proxied) override records and CNAME flattening at the zone apex.
- soa
Zone
Dns Settings Soa - Components of the zone's SOA record.
- zone
Id String - Identifier
- zone
Mode String - Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
- flatten
All booleanCnames - 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 boolean - Whether to enable Foundation DNS Advanced Nameservers on the zone.
- internal
Dns ZoneDns Settings Internal Dns - Settings for this internal zone.
- multi
Provider 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
Zone
Dns Settings Nameservers - Settings determining the nameservers through which the zone should be available.
- ns
Ttl number - The time to live (TTL) of the zone's nameserver (NS) records.
- secondary
Overrides boolean - Allows a Secondary DNS zone to use (proxied) override records and CNAME flattening at the zone apex.
- soa
Zone
Dns Settings Soa - Components of the zone's SOA record.
- zone
Id string - Identifier
- zone
Mode string - Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
- flatten_
all_ boolcnames - 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 ZoneDns Settings Internal Dns Args - 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
Zone
Dns Settings Nameservers Args - 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
Zone
Dns Settings Soa Args - 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".
- flatten
All BooleanCnames - 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 Boolean - Whether to enable Foundation DNS Advanced Nameservers on the zone.
- internal
Dns Property Map - Settings for this internal zone.
- multi
Provider 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.
- ns
Ttl Number - The time to live (TTL) of the zone's nameserver (NS) records.
- secondary
Overrides 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.
- zone
Id String - Identifier
- zone
Mode String - Whether the zone mode is a regular or CDN/DNS only zone. Available values: "standard", "cdnonly", "dnsonly".
Supporting Types
ZoneDnsSettingsInternalDns, ZoneDnsSettingsInternalDnsArgs
- Reference
Zone stringId - The ID of the zone to fallback to.
- Reference
Zone stringId - The ID of the zone to fallback to.
- reference
Zone StringId - The ID of the zone to fallback to.
- reference
Zone stringId - The ID of the zone to fallback to.
- reference_
zone_ strid - The ID of the zone to fallback to.
- reference
Zone StringId - The ID of the zone to fallback to.
ZoneDnsSettingsNameservers, ZoneDnsSettingsNameserversArgs
ZoneDnsSettingsSoa, ZoneDnsSettingsSoaArgs
- Expire double
- Time in seconds of being unable to query the primary server after which secondary servers should stop serving the zone.
- Min
Ttl double - The time to live (TTL) for negative caching of records within the zone.
- Mname string
- The primary nameserver, which may be used for outbound zone transfers.
- Refresh double
- Time in seconds after which secondary servers should re-check the SOA record to see if the zone has been updated.
- Retry double
- Time in seconds after which secondary servers should retry queries after the primary server was unresponsive.
- Rname string
- The email address of the zone administrator, with the first label representing the local part of the email address.
- Ttl double
- The time to live (TTL) of the SOA record itself.
- Expire float64
- Time in seconds of being unable to query the primary server after which secondary servers should stop serving the zone.
- Min
Ttl float64 - The time to live (TTL) for negative caching of records within the zone.
- Mname string
- The primary nameserver, which may be used for outbound zone transfers.
- Refresh float64
- Time in seconds after which secondary servers should re-check the SOA record to see if the zone has been updated.
- Retry float64
- Time in seconds after which secondary servers should retry queries after the primary server was unresponsive.
- Rname string
- The email address of the zone administrator, with the first label representing the local part of the email address.
- Ttl float64
- The time to live (TTL) of the SOA record itself.
- expire Double
- Time in seconds of being unable to query the primary server after which secondary servers should stop serving the zone.
- min
Ttl Double - The time to live (TTL) for negative caching of records within the zone.
- mname String
- The primary nameserver, which may be used for outbound zone transfers.
- refresh Double
- Time in seconds after which secondary servers should re-check the SOA record to see if the zone has been updated.
- retry Double
- Time in seconds after which secondary servers should retry queries after the primary server was unresponsive.
- rname String
- The email address of the zone administrator, with the first label representing the local part of the email address.
- ttl Double
- The time to live (TTL) of the SOA record itself.
- expire number
- Time in seconds of being unable to query the primary server after which secondary servers should stop serving the zone.
- min
Ttl number - The time to live (TTL) for negative caching of records within the zone.
- mname string
- The primary nameserver, which may be used for outbound zone transfers.
- refresh number
- Time in seconds after which secondary servers should re-check the SOA record to see if the zone has been updated.
- retry number
- Time in seconds after which secondary servers should retry queries after the primary server was unresponsive.
- rname string
- The email address of the zone administrator, with the first label representing the local part of the email address.
- ttl number
- The time to live (TTL) of the SOA record itself.
- expire float
- Time in seconds of being unable to query the primary server after which secondary servers should stop serving the zone.
- min_
ttl float - The time to live (TTL) for negative caching of records within the zone.
- mname str
- The primary nameserver, which may be used for outbound zone transfers.
- refresh float
- Time in seconds after which secondary servers should re-check the SOA record to see if the zone has been updated.
- retry float
- Time in seconds after which secondary servers should retry queries after the primary server was unresponsive.
- rname str
- The email address of the zone administrator, with the first label representing the local part of the email address.
- ttl float
- The time to live (TTL) of the SOA record itself.
- expire Number
- Time in seconds of being unable to query the primary server after which secondary servers should stop serving the zone.
- min
Ttl Number - The time to live (TTL) for negative caching of records within the zone.
- mname String
- The primary nameserver, which may be used for outbound zone transfers.
- refresh Number
- Time in seconds after which secondary servers should re-check the SOA record to see if the zone has been updated.
- retry Number
- Time in seconds after which secondary servers should retry queries after the primary server was unresponsive.
- rname String
- The email address of the zone administrator, with the first label representing the local part of the email address.
- ttl 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.