-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
44 lines (36 loc) · 976 Bytes
/
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
variable "credentials" {
type = string
description = "Path to the JSON file with the service account credentials."
}
variable "ssh_key" {
type = string
}
variable "project_id" {
type = string
}
variable "region" {
type = string
}
variable "zone" {
type = string
}
variable "kms_keyring" {
type = string
default = "vault-gevorg6"
description = "Name of the GCP KMS keyring"
}
variable "kms_crypto_key" {
type = string
default = "vault-gevorg-init6"
description = "Name of the GCP KMS crypto key"
}
variable "load_balancing_scheme" {
type = string
default = "EXTERNAL"
description = "e.g. [INTERNAL|EXTERNAL]. Scheme of the load balancer"
}
variable "allow_public_egress" {
type = bool
default = true
description = "Whether to create a NAT for external egress. If false, you must also specify an http_proxy to download required executables including Vault, Fluentd and Stackdriver"
}