-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
29 lines (26 loc) · 942 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*---------------------------------------------------------
Provider Variable
---------------------------------------------------------*/
variable "region" {
description = "The AWS Region e.g. us-east-1 for the environment"
type = string
}
/*---------------------------------------------------------
Common Variables
---------------------------------------------------------*/
variable "tags" {
description = "Mandatory tags for the resources"
type = map(string)
}
/*---------------------------------------------------------
Bootstrap Variables
---------------------------------------------------------*/
variable "s3_statebucket_name" {
description = "Globally unique name of the S3 bucket used for storing Terraform state files."
type = string
}
variable "dynamo_locktable_name" {
description = "Name of the DynamoDB table used for Terraform state locking."
type = string
default = ""
}