Skip to content

Commit d829b6f

Browse files
committed
TF-multi: Correct CFn path in comment, variable description
1 parent c755a6b commit d829b6f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Jump to:
7474

7575
```terraform
7676
module "lights_off" {
77-
source = "git::https://github.com/sqlxpert/lights-off-aws.git//terraform?ref=v3.3.0"
77+
source = "git::https://github.com/sqlxpert/lights-off-aws.git//terraform?ref=v3.3.1"
7878
# Reference a specific version from github.com/sqlxpert/lights-off-aws/releases
7979
}
8080
```
@@ -468,7 +468,7 @@ account) pair. To deploy to multiple regions and/or AWS accounts,
468468

469469
```terraform
470470
module "lights_off_stackset" {
471-
source = "git::https://github.com/sqlxpert/lights-off-aws.git//terraform-multi?ref=v3.3.0"
471+
source = "git::https://github.com/sqlxpert/lights-off-aws.git//terraform-multi?ref=v3.3.1"
472472
# Reference a specific version from github.com/sqlxpert/lights-off-aws/releases
473473
474474
lights_off_stackset_regions = ["us-east-1", "us-west-2", ]
@@ -499,7 +499,7 @@ resemble:
499499
500500
```terraform
501501
module "lights_off" {
502-
source = "git::https://github.com/sqlxpert/lights-off-aws.git//terraform?ref=v3.3.0"
502+
source = "git::https://github.com/sqlxpert/lights-off-aws.git//terraform?ref=v3.3.1"
503503
# Reference a specific version from github.com/sqlxpert/lights-off-aws/releases
504504
505505
for_each = toset(["us-east-1", "us-west-2", ])

terraform-multi/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ variable "lights_off_stackset_params" {
8080
PlaceholderHelp = optional(string, "")
8181
PlaceholderAdvancedParameters = optional(string, "")
8282

83-
# Repeat defaults from ../cloudformation/lights_off_aws.yaml
83+
# Repeat defaults from cloudformation/lights_off_aws.yaml
8484

8585
# For a StackSet, we must cover all parameters here or in
8686
# aws_cloudformation_stack_set.lifecycle.ignore_changes
8787
})
8888

89-
description = "Lights Off CloudFormation StackSet parameter map. Keys, all optional, are parameter names from ../cloudformation/lights_off_aws.yaml ; parameters are described there. CloudFormation and Terraform data types match, except for Boolean parameters. Terraform converts bool values to CloudFormation String values automatically. For BackupRoleName in the StackSet module, include any role path prefix in Terraform, just as explained in the CloudFormation parameter description."
89+
description = "Lights Off CloudFormation StackSet parameter map. Keys, all optional, are parameter names from cloudformation/lights_off_aws.yaml ; parameters are described there. CloudFormation and Terraform data types match, except for Boolean parameters. Terraform converts bool values to CloudFormation String values automatically. For BackupRoleName in the StackSet module, include any role path prefix in Terraform, just as explained in the CloudFormation parameter description."
9090

9191
default = {}
9292
}

0 commit comments

Comments
 (0)