diff --git a/README.md b/README.md
index 01fb060..791afd8 100644
--- a/README.md
+++ b/README.md
@@ -41,10 +41,10 @@ sys 0m2.015s
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | 5.95.0 |
-| [helm](#provider\_helm) | 2.17.0 |
-| [kubernetes](#provider\_kubernetes) | 2.36.0 |
-| [null](#provider\_null) | 3.2.3 |
+| [aws](#provider\_aws) | 6.0.0 |
+| [helm](#provider\_helm) | 3.0.1 |
+| [kubernetes](#provider\_kubernetes) | 2.37.1 |
+| [null](#provider\_null) | 3.2.4 |
## Modules
@@ -73,7 +73,6 @@ sys 0m2.015s
| [cluster\_name](#input\_cluster\_name) | EKS cluster name name component used through out the EKS cluster describing its purpose (ex: dice-dev) | `string` | n/a | yes |
| [operators\_ns](#input\_operators\_ns) | Namespace to create where operators will be installed. | `string` | `"operators"` | no |
| [region](#input\_region) | AWS region | `string` | n/a | yes |
-| [release\_version](#input\_release\_version) | The version of helm charts to use | `string` | n/a | yes |
| [security\_group\_all\_worker\_mgmt\_id](#input\_security\_group\_all\_worker\_mgmt\_id) | The security group representing all of the worker nodes in the cluster. | `string` | n/a | yes |
| [subnets](#input\_subnets) | Specify the subnets used by this cluster | `list(string)` | n/a | yes |
| [tag\_costallocation](#input\_tag\_costallocation) | Tag CostAllocation (default) | `string` | `"csvd:infrastructure"` | no |
diff --git a/eks_console_access.tf b/eks_console_access.tf
index d93964b..461530d 100644
--- a/eks_console_access.tf
+++ b/eks_console_access.tf
@@ -32,6 +32,5 @@ resource "helm_release" "console_access" {
chart = each.key
name = each.key
namespace = "default"
- version = var.release_version
repository = "./"
}
diff --git a/variables.tf b/variables.tf
index 211d164..b755841 100644
--- a/variables.tf
+++ b/variables.tf
@@ -47,8 +47,3 @@ variable "tags" {
type = map(string)
default = {}
}
-
-variable "release_version" {
- description = "The version of helm charts to use"
- type = string
-}