-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #160 from YakDriver/up12
Upgrade to 0.12
- Loading branch information
Showing
41 changed files
with
938 additions
and
1,038 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,6 @@ | ||
#Outputs from the Linux Autoscaling Terraform module. | ||
|
||
output "watchmaker-lx-autoscale-stack-id" { | ||
description = "This output provides the CloudFormation stack id of the Watchmaker Linux instance" | ||
value = "${module.lx-autoscale.watchmaker-lx-autoscale-stack-id}" | ||
} | ||
|
||
output "watchmaker-lx-autoscale-stack-down-schedule-action" { | ||
description = "This output provides the Scale Down Scheduled Action ID" | ||
value = "${module.lx-autoscale.watchmaker-lx-autoscale-scale-down-scheduled-action}" | ||
} | ||
|
||
output "watchmaker-lx-autoscale-stack-up-schedule-action" { | ||
description = "This output provides the Scale Up Scheduled Action ID" | ||
value = "${module.lx-autoscale.watchmaker-lx-autoscale-scale-up-scheduled-action}" | ||
} | ||
|
||
output "watchmaker-lx-autoscale-autoscaling-group-id" { | ||
description = "This output provides the Autoscaling Group ID" | ||
value = "${module.lx-autoscale.watchmaker-lx-autoscale-autoscaling-group-id}" | ||
} | ||
|
||
output "watchmaker-lx-autoscale-launch-config-id" { | ||
description = "This output provides the Launch Configuration ID" | ||
value = "${module.lx-autoscale.watchmaker-lx-autoscale-launch-config-id}" | ||
} | ||
|
||
output "watchmaker-lx-autoscale-launch-config-log-group-name" { | ||
description = "This output provides the Log Group Name" | ||
value = "${module.lx-autoscale.watchmaker-lx-autoscale-launch-config-log-group-name}" | ||
output "watchmaker-lx-autoscale" { | ||
description = "CloudFormation stack object for watchmaker-lx-autoscale" | ||
value = module.lx-autoscale.watchmaker-lx-autoscale | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
terraform { | ||
required_version = ">= 0.12" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,6 @@ | ||
#Outputs from the Linux Instance Terraform module. | ||
|
||
output "watchmaker-lx-instance-stack-id" { | ||
description = "This output provides the CloudFormation stack id of the Watchmaker Linux instance" | ||
value = "${module.lx-instance.watchmaker-lx-instance-stack-id}" | ||
} | ||
|
||
output "watchmaker-lx-instance-id" { | ||
description = "This output provides the Instance ID" | ||
value = "${module.lx-instance.watchmaker-lx-instance-id}" | ||
} | ||
|
||
output "watchmaker-lx-instance-log-group-name" { | ||
description = "This output provides the Log Group Name" | ||
value = "${module.lx-instance.watchmaker-lx-instance-log-group-name}" | ||
output "watchmaker-lx-instance" { | ||
description = "CloudFormation stack object for watchmaker-lx-instance" | ||
value = module.lx-instance.watchmaker-lx-instance | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
terraform { | ||
required_version = ">= 0.12" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,6 @@ | ||
#Outputs from the Windows Autoscaling Terraform module. | ||
|
||
output "watchmaker-win-autoscale-stack-id" { | ||
description = "This output provides the CloudFormation Stack ID" | ||
value = "${module.win-autoscale.watchmaker-win-autoscale-stack-id}" | ||
} | ||
|
||
output "watchmaker-win-autoscale-scale-down-scheduled-action" { | ||
description = "This output provides the Scale Down Scheduled Action ID" | ||
value = "${module.win-autoscale.watchmaker-win-autoscale-scale-down-scheduled-action}" | ||
} | ||
|
||
output "watchmaker-win-autoscale-scale-up-scheduled-action" { | ||
description = "This output provides the Scale Up Scheduled Action ID" | ||
value = "${module.win-autoscale.watchmaker-win-autoscale-scale-up-scheduled-action}" | ||
} | ||
|
||
output "watchmaker-win-autoscale-autoscaling-group-id" { | ||
description = "This output provides the Autoscaling Group ID" | ||
value = "${module.win-autoscale.watchmaker-win-autoscale-autoscaling-group-id}" | ||
} | ||
|
||
output "watchmaker-win-autoscale-launch-config-id" { | ||
description = "This output provides the Launch Configuration ID" | ||
value = "${module.win-autoscale.watchmaker-win-autoscale-launch-config-id}" | ||
} | ||
|
||
output "watchmaker-win-autoscale-launch-config-log-group-name" { | ||
description = "This output provides the Log Group Name" | ||
value = "${module.win-autoscale.watchmaker-win-autoscale-launch-config-log-group-name}" | ||
output "watchmaker-win-autoscale" { | ||
description = "CloudFormation stack object for watchmaker-win-autoscale" | ||
value = module.win-autoscale.watchmaker-win-autoscale | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
terraform { | ||
required_version = ">= 0.12" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,6 @@ | ||
#Outputs from the Windows Instance Terraform module. | ||
|
||
output "watchmaker-win-instance-stack-id" { | ||
description = "This output provides the CloudFormation Stack ID" | ||
value = "${module.win-instance.watchmaker-win-instance-stack-id}" | ||
} | ||
|
||
output "watchmaker-win-instance-id" { | ||
description = "This output provides the Instance ID" | ||
value = "${module.win-instance.watchmaker-win-instance-id}" | ||
} | ||
|
||
output "watchmaker-win-instance-log-group-name" { | ||
description = "This output provides the Log Group Name" | ||
value = "${module.win-instance.watchmaker-win-instance-log-group-name}" | ||
output "watchmaker-win-instance" { | ||
description = "CloudFormation stack object for watchmaker-win-instance" | ||
value = module.win-instance.watchmaker-win-instance | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
terraform { | ||
required_version = ">= 0.12" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,6 @@ | ||
#Outputs from the Linux Autoscaling Terraform module. | ||
|
||
output "watchmaker-lx-autoscale-stack-id" { | ||
description = "CloudFormation stack id" | ||
value = "${aws_cloudformation_stack.watchmaker-lx-autoscale.id}" | ||
} | ||
|
||
output "watchmaker-lx-autoscale-scale-down-scheduled-action" { | ||
description = "Scale Down Scheduled Action ID" | ||
value = "${lookup(aws_cloudformation_stack.watchmaker-lx-autoscale.outputs, "ScaleDownScheduledAction", "")}" | ||
} | ||
|
||
output "watchmaker-lx-autoscale-scale-up-scheduled-action" { | ||
description = "Scale Up Scheduled Action ID" | ||
value = "${lookup(aws_cloudformation_stack.watchmaker-lx-autoscale.outputs, "ScaleUpScheduledAction", "")}" | ||
} | ||
|
||
output "watchmaker-lx-autoscale-autoscaling-group-id" { | ||
description = "Autoscaling Group ID" | ||
value = "${lookup(aws_cloudformation_stack.watchmaker-lx-autoscale.outputs, "WatchmakerAutoScalingGroupId", "")}" | ||
} | ||
|
||
output "watchmaker-lx-autoscale-launch-config-id" { | ||
description = "Launch Configuration ID" | ||
value = "${lookup(aws_cloudformation_stack.watchmaker-lx-autoscale.outputs, "WatchmakerLaunchConfigId", "")}" | ||
} | ||
|
||
output "watchmaker-lx-autoscale-launch-config-log-group-name" { | ||
description = "Log Group Name" | ||
value = "${lookup(aws_cloudformation_stack.watchmaker-lx-autoscale.outputs, "WatchmakerLaunchConfigLogGroupName", "")}" | ||
output "watchmaker-lx-autoscale-stack" { | ||
description = "CloudFormation stack object for watchmaker-lx-autoscale" | ||
value = aws_cloudformation_stack.watchmaker-lx-autoscale | ||
} |
Oops, something went wrong.