Skip to content
Start here

Total TLS

resource cloudflare_total_tls

required Expand Collapse
zone_id: String

Identifier.

enabled: Bool

If enabled, Total TLS will order a hostname specific TLS certificate for any proxied A, AAAA, or CNAME record in your zone.

optional Expand Collapse
certificate_authority?: String

The Certificate Authority that Total TLS certificates will be issued through.

computed Expand Collapse
id: String

Identifier.

validity_period: Int64

The validity period in days for the certificates ordered via Total TLS.

cloudflare_total_tls

resource "cloudflare_total_tls" "example_total_tls" {
  zone_id = "023e105f4ecef8ad9ca31a8372d0c353"
  enabled = true
  certificate_authority = "google"
}

data cloudflare_total_tls

required Expand Collapse
zone_id: String

Identifier.

computed Expand Collapse
id: String

Identifier.

certificate_authority: String

The Certificate Authority that Total TLS certificates will be issued through.

enabled: Bool

If enabled, Total TLS will order a hostname specific TLS certificate for any proxied A, AAAA, or CNAME record in your zone.

validity_period: Int64

The validity period in days for the certificates ordered via Total TLS.

cloudflare_total_tls

data "cloudflare_total_tls" "example_total_tls" {
  zone_id = "023e105f4ecef8ad9ca31a8372d0c353"
}