Some checks failed
ci/woodpecker/push/default Pipeline failed
Pipeline 461 failed terraform init: the removed{} handoff block sat in
the stack-local module, but Terraform only allows removed blocks in the
root module. Same intent, correct position (from =
module.cloudflared.cloudflare_record.bridge_pages, destroy=false).
Without this the stale state entry would make the next cloudflared
apply destroy the record valia-sites now owns.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
12 lines
433 B
HCL
12 lines
433 B
HCL
# bridge.viktorbarzin.me (Cloudflare Pages) moved to stacks/valia-sites
|
|
# (ADR-0018), which has already imported the live record. Forget it from this
|
|
# stack's state WITHOUT destroying. removed{} must sit in the root module —
|
|
# a module-level attempt broke init (pipeline 461). Delete this file once the
|
|
# apply has run.
|
|
removed {
|
|
from = module.cloudflared.cloudflare_record.bridge_pages
|
|
|
|
lifecycle {
|
|
destroy = false
|
|
}
|
|
}
|