feat(Terraform): Minio S3 gateway proxy
[csit.git] / fdio.infra.terraform / 1n_nmd / 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://nomad.service.consul: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 "token" {
32   description = "Vault root token"
33   type        = string
34   sensitive   = true
35 }