Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions cloudflare/unicornops/zones/familychat-dev/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,17 @@ resource "cloudflare_zone" "this" {
# reads every setting including entitlement-gated ones (origin_max_http_version ->
# "Access denied (999)"). New zones default to Automatic SSL/TLS; always_use_https
# is enabled at deploy time by family-chat's scripts/cloudflare-enable-always-https.sh.
#
# The override briefly existed in state (first apply); destroying it writes
# read-only settings back and fails, so forget it from state instead. This
# block can be deleted once the removal has applied.
removed {
from = cloudflare_zone_settings_override.this

lifecycle {
destroy = false
}
}

output "zone_id" {
value = cloudflare_zone.this.id
Expand Down
Loading