-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
67 lines (57 loc) · 1.8 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
# ----------------------------------------------------------------------------
# REQUIRED PARAMETERS
# These parameters are required.
# ----------------------------------------------------------------------------
variable "project_name" {
description = "The human readable name for the project factory"
type = string
}
variable "billing_account" {
description = "The billing account to use"
type = string
}
variable "folder_id" {
description = "The existing folder to use for the project"
type = string
}
variable "activate_apis" {
description = "The APIs to activate on the project"
type = list(string)
}
# ----------------------------------------------------------------------------
# OPTIONAL PARAMETERS
# These parameters have reasonable defaults.
# ----------------------------------------------------------------------------
variable "project_id" {
description = "Make project_id a user-settable parameter"
type = string
default = ""
}
variable "org_id" {
description = "Organization id."
type = string
default = "brown.edu"
}
variable "auto_create_network" {
description = "Auto create default network."
type = bool
default = false
}
variable "default_service_account" {
description = "Project default service account setting: can be one of delete, depriviledge, or keep."
type = string
default = "delete"
}
variable "disable_dependent_services" {
description = "Whether services that are enabled and which depend on this service should also be disabled when this service is destroyed."
type = bool
default = true
}
variable "labels" {
type = map(string)
description = "Map of labels for project."
default = {
"environment" = "automation"
"managed_by" = "terraform"
}
}