Skip to content

Commit cafd35a

Browse files
committed
fix: allow ci to run build.yml
1 parent 9e5e048 commit cafd35a

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

infra/live/ci/aws/oidc/terragrunt.hcl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,10 @@ locals {
77
"s3:*",
88
"iam:*"
99
]
10-
deploy_tags = ["*"]
1110
}
1211

1312
inputs = {
1413
allowed_role_actions = local.allowed_role_actions
15-
deploy_tags = local.deploy_tags
1614
}
1715

1816
terraform {

infra/live/ci/environment_vars.hcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
locals {
2-
2+
deploy_branches = ["main"]
33
}
44

55
inputs = {
6-
6+
deploy_branches = local.deploy_branches
77
}

infra/live/prod/environment_vars.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
locals {
22
log_retention_days = 14
3-
deploy_branches = ["*"]
3+
deploy_branches = ["main"]
44
}
55

66
inputs = {

0 commit comments

Comments
 (0)