Skip to content

Commit

Permalink
release test
Browse files Browse the repository at this point in the history
  • Loading branch information
jdbass committed May 16, 2024
1 parent f71fa2c commit 2d2548b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ jobs:
docker build -t $ECR_TAG ./backend -f ./backend/deploy.dockerfile
docker push $ECR_TAG
echo "image_backend=$ECR_TAG" >> $GITHUB_OUTPUT
echo $ECR_TAG | cat ecr_tag.txt
echo $ECR_TAG > ecr_tag.txt
- name: Archive ECR tag
uses: actions/upload-artifact@v4
Expand Down
4 changes: 3 additions & 1 deletion tofu/environments/prod/data-store/cache/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ dependency "vpc" {
mock_outputs_allowed_terraform_commands = ["init", "validate", "plan"]
mock_outputs = {
vpc_id = "mock_vpc_id"
database_subnets = ["subnet-mocksubnet1234567"]
subnets = ["subnet-mocksubnet1234567"]
database_subnet_cidrs = ["subnet-mocksubnet1234567"]
source_security_groups = ["sg-mocksecuritygroup"]
}
}
Expand Down Expand Up @@ -47,5 +48,6 @@ inputs = {
vpc = dependency.vpc.outputs.vpc_id
subnets = dependency.vpc.outputs.database_subnets
source_security_groups = [dependency.backend.outputs.security_group_id]
database_subnet_cidrs = dependency.vpc.outputs.database_subnet_cidrs
tags = local.tags
}
3 changes: 2 additions & 1 deletion tofu/environments/stage/data-store/cache/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ dependency "vpc" {
mock_outputs_allowed_terraform_commands = ["init", "validate", "plan"]
mock_outputs = {
vpc_id = "mock_vpc_id"
database_subnets = ["subnet-mocksubnet1234567"]
subnets = ["subnet-mocksubnet1234567"]
database_subnet_cidrs = ["subnet-mocksubnet1234567"]
source_security_groups = ["sg-mocksecuritygroup"]
}
}
Expand Down

0 comments on commit 2d2548b

Please sign in to comment.