cloudflare.Zone
Explore with Pulumi AI
If you are attempting to sign up a subdomain of a zone you must first have Subdomain Support entitlement for your account.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const exampleZone = new cloudflare.Zone("example_zone", {
account: {
id: "023e105f4ecef8ad9ca31a8372d0c353",
},
name: "example.com",
type: "full",
});
import pulumi
import pulumi_cloudflare as cloudflare
example_zone = cloudflare.Zone("example_zone",
account={
"id": "023e105f4ecef8ad9ca31a8372d0c353",
},
name="example.com",
type="full")
package main
import (
"github.com/pulumi/pulumi-cloudflare/sdk/v6/go/cloudflare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudflare.NewZone(ctx, "example_zone", &cloudflare.ZoneArgs{
Account: &cloudflare.ZoneAccountArgs{
Id: pulumi.String("023e105f4ecef8ad9ca31a8372d0c353"),
},
Name: pulumi.String("example.com"),
Type: pulumi.String("full"),
})
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 exampleZone = new Cloudflare.Zone("example_zone", new()
{
Account = new Cloudflare.Inputs.ZoneAccountArgs
{
Id = "023e105f4ecef8ad9ca31a8372d0c353",
},
Name = "example.com",
Type = "full",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.Zone;
import com.pulumi.cloudflare.ZoneArgs;
import com.pulumi.cloudflare.inputs.ZoneAccountArgs;
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 exampleZone = new Zone("exampleZone", ZoneArgs.builder()
.account(ZoneAccountArgs.builder()
.id("023e105f4ecef8ad9ca31a8372d0c353")
.build())
.name("example.com")
.type("full")
.build());
}
}
resources:
exampleZone:
type: cloudflare:Zone
name: example_zone
properties:
account:
id: 023e105f4ecef8ad9ca31a8372d0c353
name: example.com
type: full
Create Zone Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Zone(name: string, args: ZoneArgs, opts?: CustomResourceOptions);
@overload
def Zone(resource_name: str,
args: ZoneArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Zone(resource_name: str,
opts: Optional[ResourceOptions] = None,
account: Optional[ZoneAccountArgs] = None,
name: Optional[str] = None,
type: Optional[str] = None,
vanity_name_servers: Optional[Sequence[str]] = None)
func NewZone(ctx *Context, name string, args ZoneArgs, opts ...ResourceOption) (*Zone, error)
public Zone(string name, ZoneArgs args, CustomResourceOptions? opts = null)
type: cloudflare:Zone
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 ZoneArgs
- 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 ZoneArgs
- 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 ZoneArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ZoneArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ZoneArgs
- 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 zoneResource = new Cloudflare.Zone("zoneResource", new()
{
Account = new Cloudflare.Inputs.ZoneAccountArgs
{
Id = "string",
},
Name = "string",
Type = "string",
VanityNameServers = new[]
{
"string",
},
});
example, err := cloudflare.NewZone(ctx, "zoneResource", &cloudflare.ZoneArgs{
Account: &cloudflare.ZoneAccountArgs{
Id: pulumi.String("string"),
},
Name: pulumi.String("string"),
Type: pulumi.String("string"),
VanityNameServers: pulumi.StringArray{
pulumi.String("string"),
},
})
var zoneResource = new Zone("zoneResource", ZoneArgs.builder()
.account(ZoneAccountArgs.builder()
.id("string")
.build())
.name("string")
.type("string")
.vanityNameServers("string")
.build());
zone_resource = cloudflare.Zone("zoneResource",
account={
"id": "string",
},
name="string",
type="string",
vanity_name_servers=["string"])
const zoneResource = new cloudflare.Zone("zoneResource", {
account: {
id: "string",
},
name: "string",
type: "string",
vanityNameServers: ["string"],
});
type: cloudflare:Zone
properties:
account:
id: string
name: string
type: string
vanityNameServers:
- string
Zone 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 Zone resource accepts the following input properties:
- Account
Zone
Account - Name string
- The domain name
- Type string
- A full zone implies that DNS is hosted with Cloudflare. A partial zone is typically a partner-hosted zone or a CNAME setup. Available values: "full", "partial", "secondary", "internal".
- Vanity
Name List<string>Servers - An array of domains used for custom name servers. This is only available for Business and Enterprise plans.
- Account
Zone
Account Args - Name string
- The domain name
- Type string
- A full zone implies that DNS is hosted with Cloudflare. A partial zone is typically a partner-hosted zone or a CNAME setup. Available values: "full", "partial", "secondary", "internal".
- Vanity
Name []stringServers - An array of domains used for custom name servers. This is only available for Business and Enterprise plans.
- account
Zone
Account - name String
- The domain name
- type String
- A full zone implies that DNS is hosted with Cloudflare. A partial zone is typically a partner-hosted zone or a CNAME setup. Available values: "full", "partial", "secondary", "internal".
- vanity
Name List<String>Servers - An array of domains used for custom name servers. This is only available for Business and Enterprise plans.
- account
Zone
Account - name string
- The domain name
- type string
- A full zone implies that DNS is hosted with Cloudflare. A partial zone is typically a partner-hosted zone or a CNAME setup. Available values: "full", "partial", "secondary", "internal".
- vanity
Name string[]Servers - An array of domains used for custom name servers. This is only available for Business and Enterprise plans.
- account
Zone
Account Args - name str
- The domain name
- type str
- A full zone implies that DNS is hosted with Cloudflare. A partial zone is typically a partner-hosted zone or a CNAME setup. Available values: "full", "partial", "secondary", "internal".
- vanity_
name_ Sequence[str]servers - An array of domains used for custom name servers. This is only available for Business and Enterprise plans.
- account Property Map
- name String
- The domain name
- type String
- A full zone implies that DNS is hosted with Cloudflare. A partial zone is typically a partner-hosted zone or a CNAME setup. Available values: "full", "partial", "secondary", "internal".
- vanity
Name List<String>Servers - An array of domains used for custom name servers. This is only available for Business and Enterprise plans.
Outputs
All input properties are implicitly available as output properties. Additionally, the Zone resource produces the following output properties:
- Activated
On string - The last time proof of ownership was detected and the zone was made active
- Created
On string - When the zone was created
- Development
Mode double - The interval (in seconds) from when development mode expires (positive integer) or last expired (negative integer) for the domain. If development mode has never been enabled, this value is 0.
- Id string
- The provider-assigned unique ID for this managed resource.
- Meta
Zone
Meta - Metadata about the zone
- Modified
On string - When the zone was last modified
- Name
Servers List<string> - The name servers Cloudflare assigns to a zone
- Original
Dnshost string - DNS host at the time of switching to Cloudflare
- Original
Name List<string>Servers - Original name servers before moving to Cloudflare
- Original
Registrar string - Registrar for the domain at the time of switching to Cloudflare
- Owner
Zone
Owner - The owner of the zone
- Paused bool
- Indicates whether the zone is only using Cloudflare DNS services. A true value means the zone will not receive security or performance benefits.
- Status string
- The zone status on Cloudflare. Available values: "initializing", "pending", "active", "moved".
- Verification
Key string - Verification key for partial zone setup.
- Activated
On string - The last time proof of ownership was detected and the zone was made active
- Created
On string - When the zone was created
- Development
Mode float64 - The interval (in seconds) from when development mode expires (positive integer) or last expired (negative integer) for the domain. If development mode has never been enabled, this value is 0.
- Id string
- The provider-assigned unique ID for this managed resource.
- Meta
Zone
Meta - Metadata about the zone
- Modified
On string - When the zone was last modified
- Name
Servers []string - The name servers Cloudflare assigns to a zone
- Original
Dnshost string - DNS host at the time of switching to Cloudflare
- Original
Name []stringServers - Original name servers before moving to Cloudflare
- Original
Registrar string - Registrar for the domain at the time of switching to Cloudflare
- Owner
Zone
Owner - The owner of the zone
- Paused bool
- Indicates whether the zone is only using Cloudflare DNS services. A true value means the zone will not receive security or performance benefits.
- Status string
- The zone status on Cloudflare. Available values: "initializing", "pending", "active", "moved".
- Verification
Key string - Verification key for partial zone setup.
- activated
On String - The last time proof of ownership was detected and the zone was made active
- created
On String - When the zone was created
- development
Mode Double - The interval (in seconds) from when development mode expires (positive integer) or last expired (negative integer) for the domain. If development mode has never been enabled, this value is 0.
- id String
- The provider-assigned unique ID for this managed resource.
- meta
Zone
Meta - Metadata about the zone
- modified
On String - When the zone was last modified
- name
Servers List<String> - The name servers Cloudflare assigns to a zone
- original
Dnshost String - DNS host at the time of switching to Cloudflare
- original
Name List<String>Servers - Original name servers before moving to Cloudflare
- original
Registrar String - Registrar for the domain at the time of switching to Cloudflare
- owner
Zone
Owner - The owner of the zone
- paused Boolean
- Indicates whether the zone is only using Cloudflare DNS services. A true value means the zone will not receive security or performance benefits.
- status String
- The zone status on Cloudflare. Available values: "initializing", "pending", "active", "moved".
- verification
Key String - Verification key for partial zone setup.
- activated
On string - The last time proof of ownership was detected and the zone was made active
- created
On string - When the zone was created
- development
Mode number - The interval (in seconds) from when development mode expires (positive integer) or last expired (negative integer) for the domain. If development mode has never been enabled, this value is 0.
- id string
- The provider-assigned unique ID for this managed resource.
- meta
Zone
Meta - Metadata about the zone
- modified
On string - When the zone was last modified
- name
Servers string[] - The name servers Cloudflare assigns to a zone
- original
Dnshost string - DNS host at the time of switching to Cloudflare
- original
Name string[]Servers - Original name servers before moving to Cloudflare
- original
Registrar string - Registrar for the domain at the time of switching to Cloudflare
- owner
Zone
Owner - The owner of the zone
- paused boolean
- Indicates whether the zone is only using Cloudflare DNS services. A true value means the zone will not receive security or performance benefits.
- status string
- The zone status on Cloudflare. Available values: "initializing", "pending", "active", "moved".
- verification
Key string - Verification key for partial zone setup.
- activated_
on str - The last time proof of ownership was detected and the zone was made active
- created_
on str - When the zone was created
- development_
mode float - The interval (in seconds) from when development mode expires (positive integer) or last expired (negative integer) for the domain. If development mode has never been enabled, this value is 0.
- id str
- The provider-assigned unique ID for this managed resource.
- meta
Zone
Meta - Metadata about the zone
- modified_
on str - When the zone was last modified
- name_
servers Sequence[str] - The name servers Cloudflare assigns to a zone
- original_
dnshost str - DNS host at the time of switching to Cloudflare
- original_
name_ Sequence[str]servers - Original name servers before moving to Cloudflare
- original_
registrar str - Registrar for the domain at the time of switching to Cloudflare
- owner
Zone
Owner - The owner of the zone
- paused bool
- Indicates whether the zone is only using Cloudflare DNS services. A true value means the zone will not receive security or performance benefits.
- status str
- The zone status on Cloudflare. Available values: "initializing", "pending", "active", "moved".
- verification_
key str - Verification key for partial zone setup.
- activated
On String - The last time proof of ownership was detected and the zone was made active
- created
On String - When the zone was created
- development
Mode Number - The interval (in seconds) from when development mode expires (positive integer) or last expired (negative integer) for the domain. If development mode has never been enabled, this value is 0.
- id String
- The provider-assigned unique ID for this managed resource.
- meta Property Map
- Metadata about the zone
- modified
On String - When the zone was last modified
- name
Servers List<String> - The name servers Cloudflare assigns to a zone
- original
Dnshost String - DNS host at the time of switching to Cloudflare
- original
Name List<String>Servers - Original name servers before moving to Cloudflare
- original
Registrar String - Registrar for the domain at the time of switching to Cloudflare
- owner Property Map
- The owner of the zone
- paused Boolean
- Indicates whether the zone is only using Cloudflare DNS services. A true value means the zone will not receive security or performance benefits.
- status String
- The zone status on Cloudflare. Available values: "initializing", "pending", "active", "moved".
- verification
Key String - Verification key for partial zone setup.
Look up Existing Zone Resource
Get an existing Zone 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?: ZoneState, opts?: CustomResourceOptions): Zone
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account: Optional[ZoneAccountArgs] = None,
activated_on: Optional[str] = None,
created_on: Optional[str] = None,
development_mode: Optional[float] = None,
meta: Optional[ZoneMetaArgs] = None,
modified_on: Optional[str] = None,
name: Optional[str] = None,
name_servers: Optional[Sequence[str]] = None,
original_dnshost: Optional[str] = None,
original_name_servers: Optional[Sequence[str]] = None,
original_registrar: Optional[str] = None,
owner: Optional[ZoneOwnerArgs] = None,
paused: Optional[bool] = None,
status: Optional[str] = None,
type: Optional[str] = None,
vanity_name_servers: Optional[Sequence[str]] = None,
verification_key: Optional[str] = None) -> Zone
func GetZone(ctx *Context, name string, id IDInput, state *ZoneState, opts ...ResourceOption) (*Zone, error)
public static Zone Get(string name, Input<string> id, ZoneState? state, CustomResourceOptions? opts = null)
public static Zone get(String name, Output<String> id, ZoneState state, CustomResourceOptions options)
resources: _: type: cloudflare:Zone 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
Zone
Account - Activated
On string - The last time proof of ownership was detected and the zone was made active
- Created
On string - When the zone was created
- Development
Mode double - The interval (in seconds) from when development mode expires (positive integer) or last expired (negative integer) for the domain. If development mode has never been enabled, this value is 0.
- Meta
Zone
Meta - Metadata about the zone
- Modified
On string - When the zone was last modified
- Name string
- The domain name
- Name
Servers List<string> - The name servers Cloudflare assigns to a zone
- Original
Dnshost string - DNS host at the time of switching to Cloudflare
- Original
Name List<string>Servers - Original name servers before moving to Cloudflare
- Original
Registrar string - Registrar for the domain at the time of switching to Cloudflare
- Owner
Zone
Owner - The owner of the zone
- Paused bool
- Indicates whether the zone is only using Cloudflare DNS services. A true value means the zone will not receive security or performance benefits.
- Status string
- The zone status on Cloudflare. Available values: "initializing", "pending", "active", "moved".
- Type string
- A full zone implies that DNS is hosted with Cloudflare. A partial zone is typically a partner-hosted zone or a CNAME setup. Available values: "full", "partial", "secondary", "internal".
- Vanity
Name List<string>Servers - An array of domains used for custom name servers. This is only available for Business and Enterprise plans.
- Verification
Key string - Verification key for partial zone setup.
- Account
Zone
Account Args - Activated
On string - The last time proof of ownership was detected and the zone was made active
- Created
On string - When the zone was created
- Development
Mode float64 - The interval (in seconds) from when development mode expires (positive integer) or last expired (negative integer) for the domain. If development mode has never been enabled, this value is 0.
- Meta
Zone
Meta Args - Metadata about the zone
- Modified
On string - When the zone was last modified
- Name string
- The domain name
- Name
Servers []string - The name servers Cloudflare assigns to a zone
- Original
Dnshost string - DNS host at the time of switching to Cloudflare
- Original
Name []stringServers - Original name servers before moving to Cloudflare
- Original
Registrar string - Registrar for the domain at the time of switching to Cloudflare
- Owner
Zone
Owner Args - The owner of the zone
- Paused bool
- Indicates whether the zone is only using Cloudflare DNS services. A true value means the zone will not receive security or performance benefits.
- Status string
- The zone status on Cloudflare. Available values: "initializing", "pending", "active", "moved".
- Type string
- A full zone implies that DNS is hosted with Cloudflare. A partial zone is typically a partner-hosted zone or a CNAME setup. Available values: "full", "partial", "secondary", "internal".
- Vanity
Name []stringServers - An array of domains used for custom name servers. This is only available for Business and Enterprise plans.
- Verification
Key string - Verification key for partial zone setup.
- account
Zone
Account - activated
On String - The last time proof of ownership was detected and the zone was made active
- created
On String - When the zone was created
- development
Mode Double - The interval (in seconds) from when development mode expires (positive integer) or last expired (negative integer) for the domain. If development mode has never been enabled, this value is 0.
- meta
Zone
Meta - Metadata about the zone
- modified
On String - When the zone was last modified
- name String
- The domain name
- name
Servers List<String> - The name servers Cloudflare assigns to a zone
- original
Dnshost String - DNS host at the time of switching to Cloudflare
- original
Name List<String>Servers - Original name servers before moving to Cloudflare
- original
Registrar String - Registrar for the domain at the time of switching to Cloudflare
- owner
Zone
Owner - The owner of the zone
- paused Boolean
- Indicates whether the zone is only using Cloudflare DNS services. A true value means the zone will not receive security or performance benefits.
- status String
- The zone status on Cloudflare. Available values: "initializing", "pending", "active", "moved".
- type String
- A full zone implies that DNS is hosted with Cloudflare. A partial zone is typically a partner-hosted zone or a CNAME setup. Available values: "full", "partial", "secondary", "internal".
- vanity
Name List<String>Servers - An array of domains used for custom name servers. This is only available for Business and Enterprise plans.
- verification
Key String - Verification key for partial zone setup.
- account
Zone
Account - activated
On string - The last time proof of ownership was detected and the zone was made active
- created
On string - When the zone was created
- development
Mode number - The interval (in seconds) from when development mode expires (positive integer) or last expired (negative integer) for the domain. If development mode has never been enabled, this value is 0.
- meta
Zone
Meta - Metadata about the zone
- modified
On string - When the zone was last modified
- name string
- The domain name
- name
Servers string[] - The name servers Cloudflare assigns to a zone
- original
Dnshost string - DNS host at the time of switching to Cloudflare
- original
Name string[]Servers - Original name servers before moving to Cloudflare
- original
Registrar string - Registrar for the domain at the time of switching to Cloudflare
- owner
Zone
Owner - The owner of the zone
- paused boolean
- Indicates whether the zone is only using Cloudflare DNS services. A true value means the zone will not receive security or performance benefits.
- status string
- The zone status on Cloudflare. Available values: "initializing", "pending", "active", "moved".
- type string
- A full zone implies that DNS is hosted with Cloudflare. A partial zone is typically a partner-hosted zone or a CNAME setup. Available values: "full", "partial", "secondary", "internal".
- vanity
Name string[]Servers - An array of domains used for custom name servers. This is only available for Business and Enterprise plans.
- verification
Key string - Verification key for partial zone setup.
- account
Zone
Account Args - activated_
on str - The last time proof of ownership was detected and the zone was made active
- created_
on str - When the zone was created
- development_
mode float - The interval (in seconds) from when development mode expires (positive integer) or last expired (negative integer) for the domain. If development mode has never been enabled, this value is 0.
- meta
Zone
Meta Args - Metadata about the zone
- modified_
on str - When the zone was last modified
- name str
- The domain name
- name_
servers Sequence[str] - The name servers Cloudflare assigns to a zone
- original_
dnshost str - DNS host at the time of switching to Cloudflare
- original_
name_ Sequence[str]servers - Original name servers before moving to Cloudflare
- original_
registrar str - Registrar for the domain at the time of switching to Cloudflare
- owner
Zone
Owner Args - The owner of the zone
- paused bool
- Indicates whether the zone is only using Cloudflare DNS services. A true value means the zone will not receive security or performance benefits.
- status str
- The zone status on Cloudflare. Available values: "initializing", "pending", "active", "moved".
- type str
- A full zone implies that DNS is hosted with Cloudflare. A partial zone is typically a partner-hosted zone or a CNAME setup. Available values: "full", "partial", "secondary", "internal".
- vanity_
name_ Sequence[str]servers - An array of domains used for custom name servers. This is only available for Business and Enterprise plans.
- verification_
key str - Verification key for partial zone setup.
- account Property Map
- activated
On String - The last time proof of ownership was detected and the zone was made active
- created
On String - When the zone was created
- development
Mode Number - The interval (in seconds) from when development mode expires (positive integer) or last expired (negative integer) for the domain. If development mode has never been enabled, this value is 0.
- meta Property Map
- Metadata about the zone
- modified
On String - When the zone was last modified
- name String
- The domain name
- name
Servers List<String> - The name servers Cloudflare assigns to a zone
- original
Dnshost String - DNS host at the time of switching to Cloudflare
- original
Name List<String>Servers - Original name servers before moving to Cloudflare
- original
Registrar String - Registrar for the domain at the time of switching to Cloudflare
- owner Property Map
- The owner of the zone
- paused Boolean
- Indicates whether the zone is only using Cloudflare DNS services. A true value means the zone will not receive security or performance benefits.
- status String
- The zone status on Cloudflare. Available values: "initializing", "pending", "active", "moved".
- type String
- A full zone implies that DNS is hosted with Cloudflare. A partial zone is typically a partner-hosted zone or a CNAME setup. Available values: "full", "partial", "secondary", "internal".
- vanity
Name List<String>Servers - An array of domains used for custom name servers. This is only available for Business and Enterprise plans.
- verification
Key String - Verification key for partial zone setup.
Supporting Types
ZoneAccount, ZoneAccountArgs
- Id string
- Identifier
- Id string
- Identifier
- id String
- Identifier
- id string
- Identifier
- id str
- Identifier
- id String
- Identifier
ZoneMeta, ZoneMetaArgs
- Cdn
Only bool - The zone is only configured for CDN
- Custom
Certificate intQuota - Number of Custom Certificates the zone can have
- Dns
Only bool - The zone is only configured for DNS
- Foundation
Dns bool - The zone is setup with Foundation DNS
- Page
Rule intQuota - Number of Page Rules a zone can have
- Phishing
Detected bool - The zone has been flagged for phishing
- Step int
- Cdn
Only bool - The zone is only configured for CDN
- Custom
Certificate intQuota - Number of Custom Certificates the zone can have
- Dns
Only bool - The zone is only configured for DNS
- Foundation
Dns bool - The zone is setup with Foundation DNS
- Page
Rule intQuota - Number of Page Rules a zone can have
- Phishing
Detected bool - The zone has been flagged for phishing
- Step int
- cdn
Only Boolean - The zone is only configured for CDN
- custom
Certificate IntegerQuota - Number of Custom Certificates the zone can have
- dns
Only Boolean - The zone is only configured for DNS
- foundation
Dns Boolean - The zone is setup with Foundation DNS
- page
Rule IntegerQuota - Number of Page Rules a zone can have
- phishing
Detected Boolean - The zone has been flagged for phishing
- step Integer
- cdn
Only boolean - The zone is only configured for CDN
- custom
Certificate numberQuota - Number of Custom Certificates the zone can have
- dns
Only boolean - The zone is only configured for DNS
- foundation
Dns boolean - The zone is setup with Foundation DNS
- page
Rule numberQuota - Number of Page Rules a zone can have
- phishing
Detected boolean - The zone has been flagged for phishing
- step number
- cdn_
only bool - The zone is only configured for CDN
- custom_
certificate_ intquota - Number of Custom Certificates the zone can have
- dns_
only bool - The zone is only configured for DNS
- foundation_
dns bool - The zone is setup with Foundation DNS
- page_
rule_ intquota - Number of Page Rules a zone can have
- phishing_
detected bool - The zone has been flagged for phishing
- step int
- cdn
Only Boolean - The zone is only configured for CDN
- custom
Certificate NumberQuota - Number of Custom Certificates the zone can have
- dns
Only Boolean - The zone is only configured for DNS
- foundation
Dns Boolean - The zone is setup with Foundation DNS
- page
Rule NumberQuota - Number of Page Rules a zone can have
- phishing
Detected Boolean - The zone has been flagged for phishing
- step Number
ZoneOwner, ZoneOwnerArgs
Import
$ pulumi import cloudflare:index/zone:Zone example '<zone_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.