-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
47 lines (42 loc) · 965 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# Module General
#
variable "environment" {
description = "The environment reference for the resources deployed by Terraform"
type = string
default = "local"
}
#
# AWS General
#
variable "aws_region" {
description = "The AWS region where the resources will be created"
type = string
default = "us-east-1"
}
#
# AWS S3 Bucket
#
variable "bucket_name" {
description = "The name of the S3 bucket used to manage the Terraform state"
type = string
default = "terraform-state"
}
#
# AWS DynamoDB Table
#
variable "table_name" {
description = "The name of the DynamoDB table"
type = string
default = "terraform-state-lock"
}
variable "table_read_capacity" {
description = "The read capacity of the DynamoDB table"
type = number
default = 20
}
variable "table_write_capacity" {
description = "The write capacity of the DynamoDB table"
type = number
default = 20
}