-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
84 lines (70 loc) · 2.34 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Input Variables
# https://www.terraform.io/language/values/variables
variable "billing_account" {
description = "The alphanumeric ID of the billing account this project belongs to"
type = string
default = "01C550-A2C86B-B8F16B"
}
variable "budget_notification_email" {
description = "The email address to send budget notifications to"
type = string
default = "billing-admins@osinfra.io"
}
variable "cis_2_2_logging_bucket_locked" {
description = "Boolean to enable CIS 2.2 logging bucket lock"
type = bool
default = true
}
variable "cis_2_2_logging_sink_project_id" {
description = "The CIS 2.2 logging sink project ID"
type = string
default = ""
}
variable "deletion_policy" {
description = "The deletion policy for the project"
type = string
default = "PREVENT"
}
variable "description" {
description = "A short description representing the system, or service you're building in the project for example: `tools` (for a tooling project), `logging` (for a logging project), `services` (for a services project)"
type = string
}
variable "folder_id" {
description = "The numeric ID of the folder this project should be created under. Only one of `org_id` or `folder_id` may be specified"
type = string
}
variable "key_ring_location" {
description = "The location of the key ring to create"
type = string
default = "us"
}
variable "labels" {
description = "A map of key/value pairs to assign to the resources being created"
type = map(string)
default = {}
}
variable "monthly_budget_amount" {
description = "The monthly budget amount in USD to set for the project"
type = number
default = 5
}
variable "prefix" {
description = "The team prefix for example: `ops` (Operations), `sec` (Security)"
type = string
default = "test"
}
variable "random_project_id" {
description = "If true, a random hex value with a prefix of tf will be added to the `project_id`"
type = bool
default = true
}
variable "security_notification_email" {
description = "The email address to send security notifications to"
type = string
default = "security@osinfra.io"
}
variable "services" {
description = "A list of services to enable in the project"
type = list(string)
default = []
}