We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd637f7 commit 68f5b5dCopy full SHA for 68f5b5d
_providers.tf
@@ -1,3 +1,3 @@
1
provider "aws" {
2
- region = "ap-southeast-2"
+ region = var.aws_region
3
}
_variables.tf
@@ -1,3 +1,9 @@
+variable "aws_region" {
+ description = "The AWS region to deploy into (e.g. ap-southeast-2)."
+ default = "ap-southeast-2"
4
+}
5
+
6
7
# --------------------------------------------------------------------------------------------------
8
# Variables for alarm-baseline module.
9
0 commit comments