Skip to content

Commit 4744985

Browse files
authored
Merge pull request #97 from moskey71/master
add wam extraargs support
2 parents 38b8b80 + 805e0d8 commit 4744985

17 files changed

Lines changed: 327 additions & 255 deletions

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.9.1
2+
current_version = 1.10.0
33
commit = True
44
message = Bumps version to {new_version}
55
tag = False

modules/lx-autoscale/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ resource "aws_cloudformation_stack" "watchmaker-lx-autoscale" {
4949
WatchmakerOuPath = "${var.WatchmakerOuPath}"
5050
WatchmakerAdminGroups = "${var.WatchmakerAdminGroups}"
5151
WatchmakerAdminUsers = "${var.WatchmakerAdminUsers}"
52+
WatchmakerExtraArgs = "${var.WatchmakerExtraArgs}"
5253
CfnEndpointUrl = "${var.CfnEndpointUrl}"
5354
CfnGetPipUrl = "${var.CfnGetPipUrl}"
5455
CfnBootstrapUtilsUrl = "${var.CfnBootstrapUtilsUrl}"

modules/lx-autoscale/variables.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,12 @@ variable "WatchmakerAdminUsers" {
242242
default = ""
243243
}
244244

245+
variable "WatchmakerExtraArgs" {
246+
type = "string"
247+
description = "(Optional) Additional parameters to be passed to the Watchmaker CLI"
248+
default = ""
249+
}
250+
245251
variable "CloudWatchAgentUrl" {
246252
type = "string"
247253
description = "(Optional) S3 URL to CloudWatch Agent installer. Example: s3://amazoncloudwatch-agent/linux/amd64/latest/AmazonCloudWatchAgent.zip"

modules/lx-autoscale/watchmaker-lx-autoscale.params.cfn.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@
5454
ParameterValue: __WATCHMAKEROUPATH__
5555
- ParameterKey: WatchmakerAdminGroups
5656
ParameterValue: __WATCHMAKERADMINGROUPS__
57+
- ParameterKey: WatchmakerExtraArgs
58+
ParameterValue: __WATCHMAKEREXTRAARGS__
5759
- ParameterKey: CloudWatchAgentUrl
5860
ParameterValue: __CWAGENTURL__
5961
- ParameterKey: CloudWatchAppLogs

0 commit comments

Comments
 (0)