This repository has been archived on 2026-08-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
terraform-nomad/shared/variables.tf
T
unkinben 3fe7ea4c36
Build / build (pull_request) Successful in 42s
feat: initial setup
- manage nomad jobs
- create makefile
- create gitignore
- manage terragrunt environments
- add build/deploy jobs
2024-12-28 22:39:53 +11:00

15 lines
325 B
Terraform

#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)
}