mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
[CLOUDFLARE PAGES] Ignore changes on lifecycle for pages
This commit is contained in:
parent
7728a60130
commit
b18e5337f0
2 changed files with 12 additions and 0 deletions
|
|
@ -19,6 +19,12 @@ resource "cloudflare_pages_project" "inskip_root" {
|
|||
destination_dir = "public"
|
||||
root_dir = "/"
|
||||
}
|
||||
lifecycle {
|
||||
ignore_changes = [
|
||||
deployment_configs,
|
||||
source
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
resource "cloudflare_pages_domain" "inskip_root" {
|
||||
|
|
|
|||
|
|
@ -15,6 +15,12 @@ resource "cloudflare_pages_project" "kittywitch" {
|
|||
|
||||
}
|
||||
}
|
||||
lifecycle {
|
||||
ignore_changes = [
|
||||
deployment_configs,
|
||||
source
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
resource "cloudflare_pages_domain" "kittywitch_root" {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue