-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
34 lines (34 loc) · 1.08 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
variable "environment" {
description = "Environment information e.g. account IDs, public/private subnet cidrs"
type = object({
name = string
# Environment Account IDs are used for giving permissions to those Accounts for resources such as AMIs
account_id = string
resource_name_prefix = string
# For some environments (e.g. Core, Customer/production) want to protect against accidental deletion of resources
resource_deletion_protection = bool
default_tags = map(string)
})
default = {
name = ""
account_id = ""
resource_name_prefix = ""
resource_deletion_protection = true
default_tags = {}
}
}
variable "global_default_tags" {
description = "Global default tags"
default = {}
type = map(string)
}
variable "packer_s3_bucket_name" {
description = ""
default = ""
type = string
}
variable "packer_s3_bucket_account_id" {
description = ""
default = ""
type = string
}