Skip to content

Commit

Permalink
missing var dot
Browse files Browse the repository at this point in the history
  • Loading branch information
coilysiren committed Dec 2, 2024
1 parent 17dd1f1 commit ffaca64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra/api/service/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ module "service" {
local.service_config.extra_environment_variables,
{ "ENVIRONMENT" : var.environment_name },
{ "DEPLOY_TIMESTAMP" : timestamp() },
deploy_github_sha != null ? { "DEPLOY_GITHUB_SHA" : var.deploy_github_sha } : {},
deploy_github_ref != null ? { "DEPLOY_GITHUB_REF" : var.deploy_github_ref } : {}
var.deploy_github_sha != null ? { "DEPLOY_GITHUB_SHA" : var.deploy_github_sha } : {},
var.deploy_github_ref != null ? { "DEPLOY_GITHUB_REF" : var.deploy_github_ref } : {}
)

secrets = concat(
Expand Down

0 comments on commit ffaca64

Please sign in to comment.