-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
49 lines (42 loc) · 1.35 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
# global vars
variable "labels" {
description = "A list of key/value pairs to describe your resource. Labels are akin to tags."
type = "map"
default = {}
}
# project resource vars
variable "project_name" {
description = "The name to give your project."
type = "string"
default = ""
}
variable "org_id" {
description = "The ID for the organization the project will be created under. Local ENV VAR"
type = "string"
default = ""
}
variable "billing_account" {
description = "The billing account to associate with your project. Must be associated with org already. Local ENV VAR"
default = ""
}
variable "project_owner_members" {
description = "A list of gcp users / service accounts to designate as owners of the project being created."
type = "list"
default = []
}
variable "project_service_list" {
description = "List of services or APIs that will be enabled on project creation."
type = "list"
default = []
}
variable "disable_on_destroy" {
description = "Determines whether to disable the service when the terraform resource is destroyed (true/ false)"
type = "string"
default = "true"
}
# Terraform backend bucket vars
variable "location" {
description = "The region to deploy the backend bucket in."
type = "string"
default = "us-east4"
}