-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
62 lines (52 loc) · 1.46 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
variable "gcp_project" {
description = "GCP project name"
type = string
}
variable "gcp_org" {
description = "GCP organization id"
type = string
default = 【YOUR ORGANIZATION ID】
}
variable "billing_account" {
description = "Billing account for the GCP project"
type = string
default = 【YOUR BILLING ACCOUNT】
}
variable "gcp_default_enabled_services" {
description = "GCP API services to be enabled by default"
type = list(string)
default = [
"audit.googleapis.com",
"bigquery.googleapis.com",
"bigquerystorage.googleapis.com",
"cloudbuild.googleapis.com",
"cloudresourcemanager.googleapis.com",
"compute.googleapis.com",
"container.googleapis.com",
"containerregistry.googleapis.com",
"iam.googleapis.com",
"iamcredentials.googleapis.com",
"logging.googleapis.com",
"monitoring.googleapis.com",
"oslogin.googleapis.com",
"stackdriver.googleapis.com",
"storage-api.googleapis.com",
"storage-component.googleapis.com",
"artifactregistry.googleapis.com",
]
}
variable "gcp_additional_enabled_services" {
description = "Additional GCP API services to be enabled per project"
type = list(string)
default = []
}
variable "service_viewers" {
description = "Viewers of the microservice"
type = list(string)
default = []
}
variable "service_admins" {
description = "Admins of the microservice"
type = list(string)
default = []
}