@@ -78,7 +78,7 @@ resource "aws_security_group_rule" "asg_ext_alb_http_port_sg_rule" {
78
78
}
79
79
80
80
module "asg" {
81
- source = " git::ssh://[email protected] / fpco/terraform-aws- foundation//modules/single-node-asg"
81
+ source = " fpco/foundation/aws //modules/single-node-asg"
82
82
ami = module. centos . id
83
83
instance_type = " m5.xlarge"
84
84
key_name = var. ssh_key
@@ -120,13 +120,13 @@ data "template_file" "docker_compose" {
120
120
}
121
121
122
122
module "data-backup" {
123
- source = " git::ssh://[email protected] / fpco/terraform-aws- foundation//modules/dlm-lifecycle-policy"
123
+ source = " fpco/foundation/aws //modules/dlm-lifecycle-policy"
124
124
name_prefix = " confluence"
125
125
ebs_target_tags = { Name = module.asg.data_volume_name_tag }
126
126
}
127
127
128
128
module "install-docker-compose" {
129
- source = " git::ssh://[email protected] / fpco/terraform-aws- foundation//modules/init-snippet-install-docker-yum"
129
+ source = " fpco/foundation/aws //modules/init-snippet-install-docker-yum"
130
130
}
131
131
132
132
module "rds-sg" {
@@ -147,7 +147,7 @@ resource "aws_security_group_rule" "rds_sg_rule" {
147
147
}
148
148
149
149
module "rds" {
150
- source = " git::ssh://[email protected] / fpco/terraform-aws- foundation//modules/rds"
150
+ source = " fpco/foundation/aws //modules/rds"
151
151
db_engine = " postgres"
152
152
db_instance_type = " db.m5.xlarge"
153
153
db_name = " confluence"
@@ -162,7 +162,7 @@ module "rds" {
162
162
}
163
163
164
164
module "int-alb" {
165
- source = " git::ssh://[email protected] / fpco/terraform-aws- foundation//modules/alb"
165
+ source = " fpco/foundation/aws //modules/alb"
166
166
vpc_id = module. vpc . vpc_id
167
167
name_prefix = " confluence-int"
168
168
subnet_ids = module. vpc . public_subnet_ids
@@ -190,7 +190,7 @@ module "int-alb-to-asg" {
190
190
}
191
191
192
192
module "int-forwarder" {
193
- source = " git::ssh://[email protected] / fpco/terraform-aws- foundation//modules/alb-default-forward"
193
+ source = " fpco/foundation/aws //modules/alb-default-forward"
194
194
lb_arn = module. int-alb . lb_arn
195
195
lb_port = 443
196
196
name_prefix = " confluence-int-https"
@@ -201,14 +201,14 @@ module "int-forwarder" {
201
201
}
202
202
203
203
module "int-redirector" {
204
- source = " git::ssh://[email protected] / fpco/terraform-aws- foundation//modules/alb-redirect"
204
+ source = " fpco/foundation/aws //modules/alb-redirect"
205
205
lb_arn = module. int-alb . lb_arn
206
206
http_port = 80
207
207
https_port = 443
208
208
}
209
209
210
210
module "ext-alb" {
211
- source = " git::ssh://[email protected] / fpco/terraform-aws- foundation//modules/alb"
211
+ source = " fpco/foundation/aws //modules/alb"
212
212
vpc_id = module. vpc . vpc_id
213
213
name_prefix = " confluence-ext"
214
214
subnet_ids = module. vpc . public_subnet_ids
@@ -237,7 +237,7 @@ module "ext-alb-to-asg" {
237
237
}
238
238
239
239
module "ext-forwarder" {
240
- source = " git::ssh://[email protected] / fpco/terraform-aws- foundation//modules/alb-default-forward"
240
+ source = " fpco/foundation/aws //modules/alb-default-forward"
241
241
lb_arn = module. ext-alb . lb_arn
242
242
lb_port = 443
243
243
name_prefix = " confluence-ext-https"
@@ -248,7 +248,7 @@ module "ext-forwarder" {
248
248
}
249
249
250
250
module "ext-redirector" {
251
- source = " git::ssh://[email protected] / fpco/terraform-aws- foundation//modules/alb-redirect"
251
+ source = " fpco/foundation/aws //modules/alb-redirect"
252
252
lb_arn = module. ext-alb . lb_arn
253
253
http_port = 80
254
254
https_port = 443
0 commit comments