diff --git a/README.md b/README.md index 9c610ad..531cecd 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ > [!CAUTION] -> DEPRECATION NOTICE - `defaultClusterIssuer` helm chart will be discontinued on 1. November 2024. This deprecation will have impact on all existing installations prior to 2.0.0 release where `cluster_issuer_enabled = true`. In order to proceed using this module you have to upgrade to 2.X version. +> DEPRECATION NOTICE - `defaultClusterIssuer` helm chart will be discontinued by the end of 2024. +> This deprecation will have impact on all existing installations prior to 2.0.0 release where `cluster_issuer_enabled = true`. # AWS EKS Cert Manager Terraform module @@ -189,7 +190,7 @@ No modules. | [irsa\_role\_name\_prefix](#input\_irsa\_role\_name\_prefix) | The IRSA role name prefix for cert-manager | `string` | `"cert-manager-irsa"` | no | | [irsa\_tags](#input\_irsa\_tags) | IRSA resources tags | `map(string)` | `{}` | no | | [manifest\_target\_path](#input\_manifest\_target\_path) | Manifest target path in projects repository | `string` | `"helm/clusterIssuer"` | no | -| [manifest\_target\_revision](#input\_manifest\_target\_revision) | Manifest target revision to deploy from | `string` | `"1.3.0"` | no | +| [manifest\_target\_revision](#input\_manifest\_target\_revision) | Manifest target revision to deploy from | `string` | `"2.0.0"` | no | | [namespace](#input\_namespace) | The K8s namespace in which the cert manager will be installed | `string` | `"kube-system"` | no | | [policy\_allowed\_zone\_ids](#input\_policy\_allowed\_zone\_ids) | List of the Route53 zone ids for service account IAM role access | `list(string)` |
[
"*"
]
| no | | [rbac\_create](#input\_rbac\_create) | Whether to create and use RBAC resources | `bool` | `true` | no | diff --git a/variables.tf b/variables.tf index 66f7128..9924dda 100644 --- a/variables.tf +++ b/variables.tf @@ -440,7 +440,7 @@ variable "helm_postrender" { variable "manifest_target_revision" { type = string - default = "1.3.0" #FIXME: update revision before release + default = "2.0.0" #FIXME: update revision before release description = "Manifest target revision to deploy from" }