From 7bf03a0ada6874f0fa5273838834b3d958d7c694 Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Thu, 27 Feb 2025 16:01:48 -0500 Subject: [PATCH] not plural --- README.md | 2 +- main.tf | 2 +- variables.tf | 5 +++++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 05d2285..f71613d 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ | [kiali\_application\_version](#input\_kiali\_application\_version) | The version of kiali to install | `string` | `"v1.73.0"` | no | | [kiali\_operator\_version](#input\_kiali\_operator\_version) | The version of kiali to install | `string` | `"1.73.0"` | no | | [namespace](#input\_namespace) | The namespace to create and into which the tools are deployed. | `string` | `"istio-tools"` | no | -| [operators\_namespace](#input\_operators\_namespace) | The namespace into which all operators are to be deployed. | `string` | n/a | yes | +| [operator\_namespace](#input\_operator\_namespace) | The namespace into which all operators are to be deployed. | `string` | n/a | yes | | [profile](#input\_profile) | The AWS\_PROFILE to use while running the scripts. | `string` | `""` | no | | [prometheus\_internal\_url](#input\_prometheus\_internal\_url) | The url within the cluster to use to query the prometheus server. | `string` | n/a | yes | diff --git a/main.tf b/main.tf index 312e0bc..231ede6 100644 --- a/main.tf +++ b/main.tf @@ -30,7 +30,7 @@ CONFIG data "kubernetes_namespace" "operators" { metadata { - name = var.operators_namespace + name = var.operator_namespace } } diff --git a/variables.tf b/variables.tf index 848ff40..b509ff2 100644 --- a/variables.tf +++ b/variables.tf @@ -26,6 +26,11 @@ variable "istio_namespace" { default = "istio-system" } +variable "operator_namespace" { + description = "The namespace into which all operators are to be deployed." + type = string +} + variable "grafana_namespace" { description = "The namespace holding the grafana instance, used to look up the grafana password." type = string