diff options
Diffstat (limited to 'terraform-ci-infra/1n_nmd/nginx/variables.tf')
-rw-r--r-- | terraform-ci-infra/1n_nmd/nginx/variables.tf | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/terraform-ci-infra/1n_nmd/nginx/variables.tf b/terraform-ci-infra/1n_nmd/nginx/variables.tf index 1a1e45f89f..0262014049 100644 --- a/terraform-ci-infra/1n_nmd/nginx/variables.tf +++ b/terraform-ci-infra/1n_nmd/nginx/variables.tf @@ -5,9 +5,21 @@ variable "nomad_datacenters" { default = [ "dc1" ] } +variable "nomad_host_volume" { + description = "Nomad Host Volume" + type = string + default = "persistence" +} + # Nginx variable "nginx_job_name" { description = "Nginx job name" type = string default = "nginx" +} + +variable "nginx_use_host_volume" { + description = "Use Nomad host volume feature" + type = bool + default = false }
\ No newline at end of file |