-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
70 lines (57 loc) · 1.57 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
variable "project_name" {
description = "The human-readbale project name string"
type = string
}
variable "project_id" {
description = "machine readable project name"
type = string
}
variable "big_robot_name" {
description = "Name of the top-level service account"
type = string
}
variable "big_robot_group" {
description = "group for top-level service accounts"
type = string
}
variable "big_robot_email" {
description = "email of the top-level service account"
type = string
}
variable "organization" {
description = "your GCP organization name"
type = string
}
variable "organization_id" {
description = "gcloud projects describe <project> --format='value(parent.id)'"
type = string
}
variable "location" {
description = "geographic location/region"
type = string
}
variable "main_availability_zone" {
description = "availability zone within your region/location"
type = string
}
variable "keyring" {
description = "Name for your keyring decryption key"
type = string
}
variable "keyring_key" {
description = "name for the key you will create in the keyring"
type = string
}
variable "billing_account" {
description = "the billing account you want all this to go under"
type = string
}
variable "backend_bucket_name" {
description = "name of the bucket that will hold the terraform state"
type = string
default = "slim"
}
variable "bucket_path_prefix" {
description = "path to the terrafom state in the bucket"
type = string
}