orchestration-tests/nomad/vars.tf

24 lines
430 B
Terraform
Raw Normal View History

2022-03-22 04:26:04 +00:00
variable "consul_address" {
type = string
default = "http://nomad0.thefij:8500"
}
variable "base_hostname" {
type = string
description = "Base hostname to serve content from"
default = "dev.homelab"
}
variable "nomad_secret_id" {
type = string
description = "Secret ID for ACL bootstrapped Nomad"
sensitive = true
default = ""
}
variable "vault_token" {
type = string
sensitive = true
default = ""
}