Skip to content

Commit

Permalink
adjusting provider requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
jdbass committed Apr 22, 2024
1 parent 059a600 commit 3148c20
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions tofu/environments/production/services/frontend/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ dependency "backend" {
mock_outputs = {
alb_id = "mock_alb_id"
dns_name = "mock_dns_name"
x_allow_secret = "mock_secret"
}
}

Expand All @@ -43,4 +44,5 @@ inputs = {
ssl_cert = local.ssl_cert
backend_id = dependency.backend.outputs.alb_id
backend_dns_name = dependency.backend.outputs.dns_name
x_allow_secret = dependency.backend.outputs.x_allow_secret
}
2 changes: 1 addition & 1 deletion tofu/environments/stage/environment.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ generate "versions" {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.41"
version = "~> 5.40"
}
random = {
source = "hashicorp/random"
Expand Down
1 change: 1 addition & 0 deletions tofu/environments/stage/services/frontend/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ dependency "backend" {
mock_outputs = {
alb_id = "mock_alb_id"
dns_name = "mock_dns_name"
x_allow_secret = "mock_secret"
}
}

Expand Down

0 comments on commit 3148c20

Please sign in to comment.