Skip to content

Commit

Permalink
adding changes to other enviornmebnts
Browse files Browse the repository at this point in the history
  • Loading branch information
P0NDER0SA committed Oct 18, 2024
1 parent 77446c9 commit a78f5f7
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
10 changes: 10 additions & 0 deletions env/dev/manifest_secrets/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,20 @@ dependencies {

dependency "rds" {
config_path = "../rds"
mock_outputs_allowed_terraform_commands = ["validate", "plan"]
mock_outputs = {
database_read_only_proxy_endpoint = "thisisamockstring_database_read_only_proxy_endpoint"
database_read_write_proxy_endpoint = "thisisamockstring_database_read_write_proxy_endpoint"
postgres_cluster_endpoint = "thisisamockstring_postgres_cluster_endpoint"
}
}

dependency "elasticache" {
config_path = "../elasticache"
mock_outputs_allowed_terraform_commands = ["validate", "plan"]
mock_outputs = {
redis_primary_endpoint_address = "thisisamockstring_redis_primary_endpoint_address"
}
}

include {
Expand Down
10 changes: 10 additions & 0 deletions env/production/manifest_secrets/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,20 @@ dependencies {

dependency "rds" {
config_path = "../rds"
mock_outputs_allowed_terraform_commands = ["validate", "plan"]
mock_outputs = {
database_read_only_proxy_endpoint = "thisisamockstring_database_read_only_proxy_endpoint"
database_read_write_proxy_endpoint = "thisisamockstring_database_read_write_proxy_endpoint"
postgres_cluster_endpoint = "thisisamockstring_postgres_cluster_endpoint"
}
}

dependency "elasticache" {
config_path = "../elasticache"
mock_outputs_allowed_terraform_commands = ["validate", "plan"]
mock_outputs = {
redis_primary_endpoint_address = "thisisamockstring_redis_primary_endpoint_address"
}
}

include {
Expand Down
10 changes: 10 additions & 0 deletions env/sandbox/manifest_secrets/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,20 @@ dependencies {

dependency "rds" {
config_path = "../rds"
mock_outputs_allowed_terraform_commands = ["validate", "plan"]
mock_outputs = {
database_read_only_proxy_endpoint = "thisisamockstring_database_read_only_proxy_endpoint"
database_read_write_proxy_endpoint = "thisisamockstring_database_read_write_proxy_endpoint"
postgres_cluster_endpoint = "thisisamockstring_postgres_cluster_endpoint"
}
}

dependency "elasticache" {
config_path = "../elasticache"
mock_outputs_allowed_terraform_commands = ["validate", "plan"]
mock_outputs = {
redis_primary_endpoint_address = "thisisamockstring_redis_primary_endpoint_address"
}
}

include {
Expand Down

0 comments on commit a78f5f7

Please sign in to comment.