Skip to content

Commit

Permalink
fixed backend-service dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
jdbass committed Apr 1, 2024
1 parent c9a7ba1 commit e3df9eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ terraform {
dependency "vpc" {
config_path = "../../network/vpc"

mock_outputs_allowed_terraform_commands = ["validate"]
mock_outputs_allowed_terraform_commands = ["validate", "plan"]
mock_outputs = {
private_subnets = ["subnet-mocksubnet1234567"]
private_subnets = ["subnet-mocksubnet1234567", "plan"]
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ terraform {
dependency "vpc" {
config_path = "../../network/vpc"

mock_outputs_allowed_terraform_commands = ["validate"]
mock_outputs_allowed_terraform_commands = ["validate", "plan"]
mock_outputs = {
private_subnets = ["subnet-mocksubnet1234567"]
}
Expand All @@ -24,7 +24,7 @@ dependency "vpc" {
dependency "backend-infra" {
config_path = "../backend-infra"

mock_outputs_allowed_terraform_commands = ["validate"]
mock_outputs_allowed_terraform_commands = ["validate", "plan"]
mock_outputs = {
target_group_key = "MOCK_KEY"
log_group = "MOCK_LOGS"
Expand Down

0 comments on commit e3df9eb

Please sign in to comment.