-
Notifications
You must be signed in to change notification settings - Fork 608
/
variables.tf
55 lines (44 loc) · 1.06 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
variable "k8s_endpoint" {
description = "k8s_endpoint"
}
variable "k8s_master_auth_client_certificate" {
description = "k8s_master_auth_client_certificate"
}
variable "k8s_master_auth_client_key" {
description = "k8s_master_auth_client_key"
}
variable "k8s_master_auth_cluster_ca_certificate" {
description = "k8s_master_auth_cluster_ca_certificate"
}
variable "vault_host" {
description = "vault_server"
default = "localhost"
}
variable "vault_port" {
description = "vault_port"
default = "8200"
}
variable "vault_role" {
description = "vault_role"
default = "order"
}
variable "postgres_host" {
description = "postgres_server"
default = "localhost"
}
variable "postgres_port" {
description = "postgres_port"
default = "5432"
}
variable "postgres_instance" {
description = "postgres_instance"
default = "postgres"
}
variable "postgres_role" {
description = "postgres_role"
default = "database/creds/order"
}
variable "spring_docker_container" {
description = "spring_docker_container"
default = "lanceplarsen/spring-vault-demo"
}