7d5be09d2154c568478e83690c99674ab0388724
[csit.git] / fdio.infra.terraform / 1n_nmd / alertmanager / fdio / variables.tf
1 variable "nomad_acl" {
2   description = "Nomad ACLs enabled/disabled."
3   type        = bool
4   default     = false
5 }
6
7 variable "nomad_provider_address" {
8   description = "FD.io Nomad cluster address."
9   type        = string
10   default     = "http://10.32.8.14:4646"
11 }
12
13 variable "nomad_provider_ca_file" {
14   description = "A local file path to a PEM-encoded certificate authority."
15   type        = string
16   default     = "/etc/nomad.d/ssl/nomad-ca.pem"
17 }
18
19 variable "nomad_provider_cert_file" {
20   description = "A local file path to a PEM-encoded certificate."
21   type        = string
22   default     = "/etc/nomad.d/ssl/nomad-cli.pem"
23 }
24
25 variable "nomad_provider_key_file" {
26   description = "A local file path to a PEM-encoded private key."
27   type        = string
28   default     = "/etc/nomad.d/ssl/nomad-cli-key.pem"
29 }
30
31 variable "vault_provider_address" {
32   description = "Vault cluster address."
33   type        = string
34   default     = "http://10.30.51.28:8200"
35 }
36
37 variable "vault_provider_skip_tls_verify" {
38   description = "Verification of the Vault server's TLS certificate."
39   type        = bool
40   default     = false
41 }
42
43 variable "vault_provider_token" {
44   description = "Vault root token."
45   type        = string
46   sensitive   = true
47 }