From 4ebe2341e6a270dc6928253650355da633b581f5 Mon Sep 17 00:00:00 2001 From: LeoSpyke <44040856+LeoSpyke@users.noreply.github.com> Date: Tue, 20 Jun 2023 14:24:42 +0200 Subject: [PATCH] docs: Correct typo in output description (#16) --- README.md | 2 +- outputs.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 739009c..4475b9d 100644 --- a/README.md +++ b/README.md @@ -322,7 +322,7 @@ No modules. | [iam\_role\_arn](#output\_iam\_role\_arn) | The Amazon Resource Name (ARN) specifying the IAM role | | [iam\_role\_name](#output\_iam\_role\_name) | The name of the IAM role | | [iam\_role\_unique\_id](#output\_iam\_role\_unique\_id) | Stable and unique string identifying the IAM role | -| [namespaces](#output\_namespaces) | Mapf of Kubernetes namespaces created and their attributes | +| [namespaces](#output\_namespaces) | Map of Kubernetes namespaces created and their attributes | | [rbac\_group](#output\_rbac\_group) | The name of the Kubernetes RBAC group | diff --git a/outputs.tf b/outputs.tf index 1a8af62..1610336 100644 --- a/outputs.tf +++ b/outputs.tf @@ -3,7 +3,7 @@ ################################################################################ output "namespaces" { - description = "Mapf of Kubernetes namespaces created and their attributes" + description = "Map of Kubernetes namespaces created and their attributes" value = kubernetes_namespace_v1.this }