Skip to content

Commit

Permalink
Added missing code changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronaldo Macapobre committed Aug 7, 2024
1 parent 3eaeb42 commit f6471ad
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions infrastructure/cloud/environments/dev/webapp.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,17 @@ module "networking" {
}

module "container" {
source = "../../modules/container"
environment = var.environment
app_name = var.app_name
region = var.region
ecs_execution_role_arn = module.security.ecs_execution_role_arn
subnet_ids = module.networking.web_subnets_ids
sg_id = module.networking.sg_id
lb_tg_arn = module.networking.lb_tg_arn
ecs_web_log_group_name = module.monitoring.ecs_web_log_group_name
source = "../../modules/container"
environment = var.environment
app_name = var.app_name
region = var.region
ecs_execution_role_arn = module.security.ecs_execution_role_arn
subnet_ids = module.networking.web_subnets_ids
sg_id = module.networking.sg_id
lb_tg_arn = module.networking.lb_tg_arn
ecs_web_td_log_group_name = module.monitoring.ecs_web_td_log_group_name
depends_on = [module.monitoring]

}

module "monitoring" {
Expand Down

0 comments on commit f6471ad

Please sign in to comment.