Skip to content

Commit

Permalink
Merge pull request #49 from GSA-TTS/allow-proxy-access
Browse files Browse the repository at this point in the history
Set allowed egress for app
  • Loading branch information
rahearn authored Oct 11, 2024
2 parents a9bcc97 + 6139737 commit 2c54007
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions terraform/staging/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module "database" {
cf_space_name = local.cf_space_name
name = "${local.app_name}-rds-${local.env}"
rds_plan_name = "micro-psql"
depends_on = [module.app_space]
# depends_on = [module.app_space]
}

# module "redis" {
Expand Down Expand Up @@ -50,8 +50,8 @@ module "egress_proxy" {
cf_space_name = module.egress_space.space_name
client_space = local.cf_space_name
name = "tfm-egress-proxy-${local.env}"
# allowlist = {
# "${local.app_name}-${local.env}" = ["raw.githubusercontent.com"]
# }
depends_on = [module.app_space, module.egress_space]
allowlist = {
"${local.app_name}-${local.env}" = ["raw.githubusercontent.com"]
}
# depends_on = [module.app_space, module.egress_space]
}

0 comments on commit 2c54007

Please sign in to comment.