diff options
author | pmikus <pmikus@cisco.com> | 2020-12-09 20:11:42 +0000 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2020-12-12 07:59:30 +0000 |
commit | fd4d85865e145f12330a4266be48fbdd6e919cf4 (patch) | |
tree | a94252782163c250a29a0551ba48df2e023d0692 /terraform-ci-infra/1n_nmd/nginx/variables.tf | |
parent | 688a68a8f6d8a69a85cb76421a16dff9c4105c52 (diff) |
Refactor storage solution
+ Minio terraform module
+ XL mode enabled with erasure code
+ Upload script as a sample
+ Nginx terraform module
+ Updating ansible to reflect changes
Signed-off-by: pmikus <pmikus@cisco.com>
Change-Id: Ia8c439b749aa0de82bd6f1d0cfbecce4d7000a8f
Diffstat (limited to 'terraform-ci-infra/1n_nmd/nginx/variables.tf')
-rw-r--r-- | terraform-ci-infra/1n_nmd/nginx/variables.tf | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/terraform-ci-infra/1n_nmd/nginx/variables.tf b/terraform-ci-infra/1n_nmd/nginx/variables.tf new file mode 100644 index 0000000000..1a1e45f89f --- /dev/null +++ b/terraform-ci-infra/1n_nmd/nginx/variables.tf @@ -0,0 +1,13 @@ +# Nomad +variable "nomad_datacenters" { + description = "Nomad data centers" + type = list(string) + default = [ "dc1" ] +} + +# Nginx +variable "nginx_job_name" { + description = "Nginx job name" + type = string + default = "nginx" +}
\ No newline at end of file |