Skip to content
Snippets Groups Projects
Commit dfe5c5dd authored by Hanzla Sajid's avatar Hanzla Sajid
Browse files

Merge branch 'main' into production

parents 1ac98ec2 e4d2bb74
No related branches found
No related tags found
No related merge requests found
...@@ -74,6 +74,11 @@ resource "google_cloudfunctions2_function" "holi-chat-integration" { ...@@ -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 # taken from https://github.com/hashicorp/terraform-provider-google/issues/1938#issuecomment-1229042663
lifecycle { lifecycle {
replace_triggered_by = [ replace_triggered_by = [
......
...@@ -2,6 +2,7 @@ locals { ...@@ -2,6 +2,7 @@ locals {
# predefined environment names are staging, production, and <branchname> # predefined environment names are staging, production, and <branchname>
environment = terraform.workspace 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_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 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