-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
59 lines (51 loc) · 1.12 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Input Variables
variable "aws_region" {
description = "AWS region"
default = "eu-west-1"
}
variable "regions" {
description = "A list of regions to enable security controls in"
default = [
"us-east-1",
"us-east-2",
"us-west-1",
"us-west-2",
"ap-south-1",
"ap-northeast-2",
"ap-southeast-1",
"ap-southeast-2",
"ap-northeast-1",
"ca-central-1",
"eu-central-1",
"eu-west-1",
"eu-west-2",
"eu-west-3",
"eu-north-1",
"sa-east-1",
]
}
# S3
variable "force_destroy" {
description = "All objects should be deleted from the bucket so that the bucket can be destroyed without error"
default = "true"
}
# Tags
variable "tag_name" {
description = "Name tag"
default = "AWSLabs"
}
variable "tag_environment" {
description = "Environment tag"
default = "Prod"
}
variable "tags_shared" {
description = "Other tags assigned to all resources"
type = map(string)
default = {
Owner = "T.Durden"
BusinessUnit = "Paper Street Soap Co."
Department = "Mischief"
CostCenter = "7741"
Project = "Mayhem"
}
}