Commit efc279b7 authored by Mike Horwath's avatar Mike Horwath
Browse files

2 items do not work

parent b3a72efe
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -11,8 +11,8 @@
## outputs
* `id` - The zone ID.
* `vanity_name_servers` - List of Vanity Nameservers (if set).
* `meta.wildcard_proxiable` - Indicates whether wildcard DNS records can receive Cloudflare security and performance features.
* `meta.phishing_detected` - Indicates if URLs on the zone have been identified as hosting phishing content.
* **does not work** `meta.wildcard_proxiable` - Indicates whether wildcard DNS records can receive Cloudflare security and performance features.
* **does not work** `meta.phishing_detected` - Indicates if URLs on the zone have been identified as hosting phishing content.
* `status` - Status of the zone. Valid values: active, pending, initializing, moved, deleted, deactivated
* `type` - A full zone implies that DNS is hosted with Cloudflare. A partial zone is typically a partner-hosted zone or a CNAME setup. Valid values: full, partial
* `name_servers` - Cloudflare-assigned name servers. This is only populated for zones that use Cloudflare DNS.
+8 −6
Original line number Diff line number Diff line
@@ -6,13 +6,15 @@ output "vanity_name_servers" {
  value = "${cloudflare_zone.dns_zone.vanity_name_servers}"
}

output "wildcard_proxiable" {
  value = "${cloudflare_zone.dns_zone.meta.wildcard_proxiable}"
}
# does not work
# output "wildcard_proxiable" {
#   value = "${cloudflare_zone.dns_zone.meta.wildcard_proxiable}"
# }

output "phishing_detected" {
  value = "${cloudflare_zone.dns_zone.meta.phishing_detected}"
}
# does not work
# output "phishing_detected" {
#   value = "${cloudflare_zone.dns_zone.meta.phishing_detected}"
# }

output "status" {
  value = "${cloudflare_zone.dns_zone.status}"