Skip to content
Snippets Groups Projects
Commit 1bb11471 authored by Ole Langbehn's avatar Ole Langbehn
Browse files

NOISSUE add labels to functions and run services for monitoring&logging

parent 9012a6df
No related branches found
No related tags found
No related merge requests found
......@@ -74,6 +74,11 @@ resource "google_cloudfunctions2_function" "holi-chat-integration" {
}
}
labels = {
"environment_type" = local.environment_type
"holi_service" = "chat-integration"
}
# taken from https://github.com/hashicorp/terraform-provider-google/issues/1938#issuecomment-1229042663
lifecycle {
replace_triggered_by = [
......
......@@ -2,6 +2,7 @@ locals {
# predefined environment names are staging, production, and <branchname>
environment = terraform.workspace
environment_name = trim(substr(local.environment, 0, 22), ".-") # limits the length of the name that it fits constraints google imposes for some resources, e.g. project ids
environment_type = contains(["staging", "production"], local.environment) ? local.environment : "review"
default_region = data.terraform_remote_state.holi_infra_state.outputs.default_region
}
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