From 729f72af5ab410e94500a98007d5ab0703c4573e 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 | 2 +- 3 files changed, 3 insertions(+), 3 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 fce39b2..2efd120 100644 --- a/main.tf +++ b/main.tf @@ -28,7 +28,7 @@ CONFIG data "kubernetes_namespace" "operators" { metadata { - name = var.operators_namespace + name = var.operator_namespace } } diff --git a/variables.tf b/variables.tf index 9c771d6..3c1e2d5 100644 --- a/variables.tf +++ b/variables.tf @@ -32,7 +32,7 @@ variable "istio_namespace" { default = "istio-system" } -variable "operators_namespace" { +variable "operator_namespace" { description = "The namespace into which all operators are to be deployed." type = string }