-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathvariables.tf
39 lines (31 loc) · 1.07 KB
/
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
# Variables
# https://www.terraform.io/intro/getting-started/variables.html
# https://www.terraform.io/docs/configuration/variables.html
variable "aws_region" {
description = "the AWS region"
}
variable "aws_environment" {
description = "the AWS environment"
}
variable "s3_bucket_name" {
description = "the name of the S3 bucket which will be used to store state files"
}
variable "dynamodb_table_name" {
description = "the name of the DynamoDB table which will be used for state locking"
}
variable "dynamodb_read_capacity_units" {
description = "the amount of read capacity units for the DynamoDB table"
default = 5
}
variable "dynamodb_write_capacity_units" {
description = "the amount of write capacity units for the DynamoDB table"
default = 1
}
variable "iam_group_name_rw_access" {
description = "the name of the IAM group that will have read-write access"
default = "terraform_rw_access"
}
variable "iam_group_name_ro_access" {
description = "the name of the IAM group that will have read-only access"
default = "terraform_ro_access"
}