Skip to content

Commit

Permalink
Fix example-gcp names
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCutter committed Aug 30, 2024
1 parent d31852d commit 196f8a5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 0 additions & 2 deletions deployment/live/gcp/example-gcp/ci/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,5 @@ include "root" {
inputs = merge(
include.root.locals,
{
example_gcp_docker_image = "us-central1-docker.pkg.dev/trillian-tessera/docker-prod/example-gcp:latest"
log_origin = "example-gcp"
}
)
10 changes: 6 additions & 4 deletions deployment/live/gcp/example-gcp/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ terraform {
}

locals {
env = path_relative_to_include()
project_id = get_env("GOOGLE_PROJECT", "trillian-tessera")
location = get_env("GOOGLE_REGION", "us-central1")
base_name = get_env("TESSERA_BASE_NAME", "${local.env}-example-gcp")
env = path_relative_to_include()
project_id = get_env("GOOGLE_PROJECT", "trillian-tessera")
location = get_env("GOOGLE_REGION", "us-central1")
base_name = get_env("TESSERA_BASE_NAME", "${local.env}-example-gcp")
example_gcp_docker_image = "us-central1-docker.pkg.dev/trillian-tessera/docker-${local.env}/example-gcp:latest"
log_origin = "example-gcp-${local.env}"
}

remote_state {
Expand Down

0 comments on commit 196f8a5

Please sign in to comment.