-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
47 lines (39 loc) · 1.28 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
variable "org_id" {
description = "The Google Cloud organization id"
type = string
}
variable "billing_account" {
description = "The Billing Account to associate Terraform project with"
type = string
}
variable "terraform_project_id" {
description = "The id of Google Cloud Project administering Terraform (must be globally unique)"
type = string
}
variable "terraform_project_name" {
description = "The name of Google Cloud Project administering Terraform"
type = string
default = "Terraform Admin Project"
}
variable "terraform_service_account_id" {
description = "The id of service account managing this project"
type = string
default = "terraform"
}
variable "terraform_service_account_name" {
description = "The id of service account managing this project"
type = string
default = "Terraform Service Account"
}
variable "location" {
description = "The location where terraform state bucket is created"
type = string
}
variable "terraform_admins" {
description = "The list of members who can administer terraform project itself"
type = list(string)
}
variable "terraformers" {
description = "The list of members who can impersonate terraform service account"
type = list(string)
}