aboutsummaryrefslogtreecommitdiffstats
path: root/src/vlib/punt.c
AgeCommit message (Expand)AuthorFilesLines
2019-05-28Punt: socket register for exception dispatched/punted packets based on reasonNeale Ranns1-0/+20
2019-04-08vlib-punt: fix error node countingNeale Ranns1-1/+1
2019-03-28Punt InfraNeale Ranns1-0/+629
rls2406-240624'>oper-rls2406-240624 Integration testsGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.terraform/1n_nmd/variables.tf
blob: 598770eb13d933a2e6e19dad3aac13301a53e414 (plain)
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
variable "nomad_acl" {
  description = "Nomad ACLs enabled/disabled"
  type        = bool
  default     = false
}

variable "nomad_provider_address" {
  description = "FD.io Nomad cluster address."
  type        = string
  default     = "http://nomad.service.consul:4646"
}

variable "nomad_provider_ca_file" {
  description = "A local file path to a PEM-encoded certificate authority."
  type        = string
  default     = "/etc/nomad.d/ssl/nomad-ca.pem"
}

variable "nomad_provider_cert_file" {
  description = "A local file path to a PEM-encoded certificate."
  type        = string
  default     = "/etc/nomad.d/ssl/nomad-cli.pem"
}

variable "nomad_provider_key_file" {
  description = "A local file path to a PEM-encoded private key."
  type        = string
  default     = "/etc/nomad.d/ssl/nomad-cli-key.pem"
}

variable "token" {
  description = "Vault root token"
  type        = string
  sensitive   = true
}