File tree Expand file tree Collapse file tree 2 files changed +20
-19
lines changed
Expand file tree Collapse file tree 2 files changed +20
-19
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ data "aws_vpc" "vpc" {
2+ id = var. vpc_id
3+ }
4+
5+ data "aws_ssm_parameter" "rds" {
6+ for_each = toset (local. ssm_parameters . rds )
7+ name = " /rds/${ each . value } "
8+ with_decryption = true
9+ }
10+
11+ data "aws_ssm_parameter" "github" {
12+ for_each = toset (local. ssm_parameters . github )
13+ name = " /github-action/${ each . value } "
14+ with_decryption = true
15+ }
16+
117# ###############################################################################
218# Postgres Security Group
319# ###############################################################################
@@ -167,6 +183,10 @@ module "ecs_exec_role" {
167183# ECS Kong
168184# ###############################################################################
169185
186+ data "aws_autoscaling_group" "this" {
187+ name = var. asg_name
188+ }
189+
170190module "ecs_kong" {
171191 source = " infraspecdev/ecs-deployment/aws"
172192 version = " ~> 2.0.0"
You can’t perform that action at this time.
0 commit comments