orchestration-tests/nomad/vars.tf

34 lines
585 B
Terraform
Raw Permalink Normal View History

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