18 lines
320 B
HCL
18 lines
320 B
HCL
variable "consul_address" {
|
|
type = string
|
|
default = "http://n1.thefij:8500"
|
|
}
|
|
|
|
variable "nomad_secret_id" {
|
|
type = string
|
|
description = "Secret ID for ACL bootstrapped Nomad"
|
|
sensitive = true
|
|
default = ""
|
|
}
|
|
|
|
variable "vault_token" {
|
|
type = string
|
|
sensitive = true
|
|
default = ""
|
|
}
|