Skip to content

Commit

Permalink
Refactor to support the scaffolding tool
Browse files Browse the repository at this point in the history
  • Loading branch information
avnes committed Sep 18, 2024
1 parent 635225a commit 17d7fb7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions examples/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ module "ssm_agent_test" {
cost_centre = "123456"
service_availability = "low"
environment = "dev"
regional_postfix = true # If you plan to install the SSM agent in multiple regions, set this to true
}
8 changes: 6 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,11 @@ EOF
}

variable "regional_postfix" {
description = "Enable region as postfix in resources names where applicable"
description = <<EOF
Enable region as postfix in resources names where applicable
Valid Values: true, false
Notes: If set to true, the region will be added as a postfix to the resource names.
EOF
type = bool
default = true
default = false
}

0 comments on commit 17d7fb7

Please sign in to comment.