Registrar
RegistrarDomains
resource cloudflare_registrar_domain
required
domain_name: String
Provides a fully qualified domain name (FQDN), including the extension
(e.g., example.com, mybrand.app). The domain name uniquely identifies
a registration. Cloudflare permits only one registration per domain, making
the domain name a natural idempotency key for registration requests.
cloudflare_registrar_domain
resource "cloudflare_registrar_domain" "example_registrar_domain" {
account_id = "023e105f4ecef8ad9ca31a8372d0c353"
domain_name = "example.com"
auto_renew = true
locked = false
privacy = true
}
data cloudflare_registrar_domain
required
domain_name: String
Provides a fully qualified domain name (FQDN), including the extension
(e.g., example.com, mybrand.app). The domain name uniquely identifies
a registration. Cloudflare permits only one registration per domain, making
the domain name a natural idempotency key for registration requests.
cloudflare_registrar_domain
data "cloudflare_registrar_domain" "example_registrar_domain" {
account_id = "023e105f4ecef8ad9ca31a8372d0c353"
domain_name = "example.com"
}