Skip to content

Commit

Permalink
Merge pull request #97 from moskey71/master
Browse files Browse the repository at this point in the history
add wam extraargs support
  • Loading branch information
lorengordon authored Jan 18, 2019
2 parents 38b8b80 + 805e0d8 commit 4744985
Show file tree
Hide file tree
Showing 17 changed files with 327 additions and 255 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.9.1
current_version = 1.10.0
commit = True
message = Bumps version to {new_version}
tag = False
Expand Down
1 change: 1 addition & 0 deletions modules/lx-autoscale/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ resource "aws_cloudformation_stack" "watchmaker-lx-autoscale" {
WatchmakerOuPath = "${var.WatchmakerOuPath}"
WatchmakerAdminGroups = "${var.WatchmakerAdminGroups}"
WatchmakerAdminUsers = "${var.WatchmakerAdminUsers}"
WatchmakerExtraArgs = "${var.WatchmakerExtraArgs}"
CfnEndpointUrl = "${var.CfnEndpointUrl}"
CfnGetPipUrl = "${var.CfnGetPipUrl}"
CfnBootstrapUtilsUrl = "${var.CfnBootstrapUtilsUrl}"
Expand Down
6 changes: 6 additions & 0 deletions modules/lx-autoscale/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,12 @@ variable "WatchmakerAdminUsers" {
default = ""
}

variable "WatchmakerExtraArgs" {
type = "string"
description = "(Optional) Additional parameters to be passed to the Watchmaker CLI"
default = ""
}

variable "CloudWatchAgentUrl" {
type = "string"
description = "(Optional) S3 URL to CloudWatch Agent installer. Example: s3://amazoncloudwatch-agent/linux/amd64/latest/AmazonCloudWatchAgent.zip"
Expand Down
2 changes: 2 additions & 0 deletions modules/lx-autoscale/watchmaker-lx-autoscale.params.cfn.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@
ParameterValue: __WATCHMAKEROUPATH__
- ParameterKey: WatchmakerAdminGroups
ParameterValue: __WATCHMAKERADMINGROUPS__
- ParameterKey: WatchmakerExtraArgs
ParameterValue: __WATCHMAKEREXTRAARGS__
- ParameterKey: CloudWatchAgentUrl
ParameterValue: __CWAGENTURL__
- ParameterKey: CloudWatchAppLogs
Expand Down
Loading

0 comments on commit 4744985

Please sign in to comment.