FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 5e7b1bc7 authored by Dr Rich Wareham's avatar Dr Rich Wareham
Browse files

Merge branch 'fix-perma-diff' into 'master'

fix: ignore changes to docker repository

See merge request !14
parents b3a498cd 2f21ddc8
No related branches found
No related tags found
1 merge request!14fix: ignore changes to docker repository
Pipeline #555239 passed
......@@ -144,6 +144,13 @@ resource "google_cloudfunctions2_function" "script" {
var.environment_variables
)
}
lifecycle {
ignore_changes = [
# Cloud Functions will create a docker image repository for us. Don't try to keep removing it.
build_config[0].docker_repository,
]
}
}
# Allow the service account to invoke the function.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment