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

NOISSUE add labels on service level next to existing resource level

parent c3224d3e
No related branches found
No related tags found
No related merge requests found
......@@ -90,12 +90,19 @@ resource "google_cloud_run_v2_service" "translation_api_service" {
egress = "ALL_TRAFFIC"
}
# labels set on the resource level
labels = {
"environment_type" = local.environment_type
"holi_service" = "translation-api"
}
}
# labels set on the service level
labels = {
"environment_type" = local.environment_type
"holi_service" = "translation-api"
}
traffic {
percent = 100
type = "TRAFFIC_TARGET_ALLOCATION_TYPE_LATEST"
......
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