Skip to content

Commit

Permalink
test private alb
Browse files Browse the repository at this point in the history
  • Loading branch information
joshgubler committed Jan 12, 2024
1 parent f3543fa commit 05b32ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions terraform-iac/dev/app/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions terraform-iac/modules/app/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ data "aws_ecr_repository" "my_ecr_repo" {
}

module "acs" {
source = "github.com/byu-oit/terraform-aws-acs-info?ref=v4.0.0"
source = "github.com/byu-oit/terraform-aws-acs-info?ref=v4.0.0"
vpc_vpn_to_campus = true
}

module "my_fargate_api" {
Expand All @@ -47,7 +48,8 @@ module "my_fargate_api" {
]
hosted_zone = module.acs.route53_zone
https_certificate_arn = module.acs.certificate.arn
public_subnet_ids = module.acs.public_subnet_ids
alb_internal_flag = true
public_subnet_ids = module.acs.private_subnet_ids
private_subnet_ids = module.acs.private_subnet_ids
vpc_id = module.acs.vpc.id
codedeploy_service_role_arn = module.acs.power_builder_role.arn
Expand Down

0 comments on commit 05b32ab

Please sign in to comment.