All checks were successful
Build / build (pull_request) Successful in 42s
- manage nomad jobs - create makefile - create gitignore - manage terragrunt environments - add build/deploy jobs
15 lines
325 B
HCL
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)
|
|
}
|