File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
04-terraform-module/multi-repo-example/live
prod/services/webserver-cluster
stage/services/webserver-cluster
06-production-grade-infrastructure/small-modules/modules/cluster/asg-rolling-deploy Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ module "webserver_cluster" {
13
13
14
14
# Since the terraform-up-and-running-code repo is open source, we're using an HTTPS URL here. If it was a private
15
15
# repo, we'd instead use an SSH URL (git@github.com:brikis98/terraform-up-and-running-code.git) to leverage SSH auth
16
- source = " git::https:// github.com/brikis98/terraform-up-and-running-code.git //code/terraform/04-terraform-module/module-example/modules/services/webserver-cluster?ref=v0.1.0"
16
+ source = " github.com/brikis98/terraform-up-and-running-code//code/terraform/04-terraform-module/module-example/modules/services/webserver-cluster?ref=v0.1.0"
17
17
18
18
cluster_name = var. cluster_name
19
19
db_remote_state_bucket = var. db_remote_state_bucket
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ module "webserver_cluster" {
13
13
14
14
# Since the terraform-up-and-running-code repo is open source, we're using an HTTPS URL here. If it was a private
15
15
# repo, we'd instead use an SSH URL (git@github.com:brikis98/terraform-up-and-running-code.git) to leverage SSH auth
16
- source = " git::https:// github.com/brikis98/terraform-up-and-running-code.git //code/terraform/04-terraform-module/module-example/modules/services/webserver-cluster?ref=v0.1.0"
16
+ source = " github.com/brikis98/terraform-up-and-running-code//code/terraform/04-terraform-module/module-example/modules/services/webserver-cluster?ref=v0.1.0"
17
17
18
18
cluster_name = var. cluster_name
19
19
db_remote_state_bucket = var. db_remote_state_bucket
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ resource "aws_launch_configuration" "example" {
16
16
}
17
17
18
18
resource "aws_autoscaling_group" "example" {
19
- # Explicitly depend on the launch configuration's name so each time it's replaced,
20
- # this ASG is also replaced
19
+ # Explicitly depend on the launch configuration's name so each time
20
+ # it's replaced, this ASG is also replaced
21
21
name = " ${ var . cluster_name } -${ aws_launch_configuration . example . name } "
22
22
23
23
launch_configuration = aws_launch_configuration. example . name
You can’t perform that action at this time.
0 commit comments