diff options
author | pmikus <pmikus@cisco.com> | 2021-03-05 11:48:19 +0000 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2021-03-05 19:48:00 +0000 |
commit | f7825e80ea0688fa337b8a36086df2e577ca6101 (patch) | |
tree | 70e1f7171df74a8d6b4f8bf677acf3af9d755a3a /terraform-ci-infra/1n_nmd/nginx/variables.tf | |
parent | b83a029d3c6524b7f0139746fcc4325e692976b6 (diff) |
Infra: Move nginx service closer to storage
Signed-off-by: pmikus <pmikus@cisco.com>
Change-Id: I3bbaa6c458e7994e964f7a07f69f9dab008a48fd
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 |