X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=fdio.infra.terraform%2F1n_nmd%2Fnginx%2Fvariables.tf;fp=fdio.infra.terraform%2F1n_nmd%2Fnginx%2Fvariables.tf;h=02620140490c01ff464e7131870eff17391b6b1d;hb=c318223fcd266c0ee2982e803c44e193c2023054;hp=0000000000000000000000000000000000000000;hpb=221e2f4da7cb27954525d973d930cb8db4601c8f;p=csit.git diff --git a/fdio.infra.terraform/1n_nmd/nginx/variables.tf b/fdio.infra.terraform/1n_nmd/nginx/variables.tf new file mode 100644 index 0000000000..0262014049 --- /dev/null +++ b/fdio.infra.terraform/1n_nmd/nginx/variables.tf @@ -0,0 +1,25 @@ +# Nomad +variable "nomad_datacenters" { + description = "Nomad data centers" + type = list(string) + 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