terraform-nomad/shared/variables.tf
Ben Vincent f7b6ba66b2
Some checks failed
Build / build (pull_request) Failing after 28s
feat: initial setup
- manage nomad jobs
- create makefile
- create gitignore
- manage terragrunt environments
- add build jobs
2024-12-28 22:06:36 +11:00

15 lines
325 B
HCL

#variable "nomad_token" {
# description = "The Nomad API token"
# type = string
#}
variable "job_files" {
description = "List of Nomad job files to deploy"
type = list(string)
}
variable "policy_files" {
description = "List of policy files to create Nomad ACL policies"
type = list(string)
}