diff --git a/README.md b/README.md index 254d9c9..a4859b8 100644 --- a/README.md +++ b/README.md @@ -161,7 +161,6 @@ efs-csi-controller 0 5m | [enable\_cluster\_creator\_admin\_permissions](#input\_enable\_cluster\_creator\_admin\_permissions) | Grant admin permissions to the cluster creator | `bool` | `true` | no | | [subnets\_name](#input\_subnets\_name) | Name pattern for subnets to be used by EKS cluster | `string` | `"*-container-*"` | no | | [tags](#input\_tags) | Additional tags to apply to all resources | `map(string)` | `{}` | no | -| [telemetry\_namespace](#input\_telemetry\_namespace) | Namespace for telemetry components | `string` | `"telemetry"` | no | | [vpc\_name](#input\_vpc\_name) | Name of the VPC where EKS cluster will be created | `string` | n/a | yes | ## Outputs diff --git a/addons.tf b/addons.tf index 3f83cd8..9e8d98a 100644 --- a/addons.tf +++ b/addons.tf @@ -36,7 +36,6 @@ locals { } prometheus-node-exporter = { most_recent = true - namespace = var.telemetry_namespace } snapshot-controller = { most_recent = true diff --git a/variables.tf b/variables.tf index ffbd117..f4463ec 100644 --- a/variables.tf +++ b/variables.tf @@ -145,13 +145,3 @@ variable "cloudwatch_retention_days" { type = string default = "14" } - -variable "telemetry_namespace" { - description = "Namespace for telemetry components" - type = string - default = "telemetry" - validation { - condition = can(regex("^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", var.telemetry_namespace)) && length(var.telemetry_namespace) <= 63 - error_message = "Namespace must consist of lower case alphanumeric characters or '-', start and end with an alphanumeric character, and be no longer than 63 characters." - } -}