-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
34 lines (29 loc) · 747 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
variable "region" {
type = string
default = "europe-west4"
description = "GCP region to deploy clusters."
}
variable "cluster_name" {
type = string
default = "tfc-pipelines"
description = "Name of cluster."
}
variable "google_project" {
type = string
default = "andrew-f-stringsz"
description = "Google Project to deploy cluster"
}
variable "username" {
type = string
default = "hashiciorp"
description = "Username for GKE clusters"
}
variable "password" {
type = string
description = "Password for GKE clusters"
}
variable "enable_consul_and_vault" {
type = bool
default = false
description = "Enable consul and vault for the secrets cluster"
}