You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the latest version of this module with version 2.21 of the Kubernetes provider (released this morning), the new conflictsWith rules break the provider configuration in auth.tf.
I've opened a PR with a fix that's working for me - #189.
Expected Behavior
When executing a plan with version 2.8.1 of this module and version 2.21.0 of the Kubernetes provider, I expect the plan to succeed.
Steps to Reproduce
Upgrade to the latest Kubernetes provider: terraform init -upgrade or terragrunt init -upgrade
Attempt a plan: terraform plan or terragrunt plan
Screenshots
Error message:
╷
│ Error: Conflicting configuration arguments
│
│ with module.eks_cluster.provider["registry.terraform.io/hashicorp/kubernetes"],
│ on .terraform/modules/eks_cluster/auth.tf line 100, in provider "kubernetes":
│ 100: host = local.cluster_auth_map_endpoint
│
│ "host": conflicts with config_path
╵
Environment
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered:
I would like to wait and see what the next release of the Kubernetes provider brings before making changes. Historically, this kind of breaking change in a minor version release is reverted due to community feedback. Also, I hope that a future version will continue to provide the ability to override the environment variables rather than fail due to a conflict.
Meanwhile, you can pin your provider version by adding != 2.21.0 to avoid this issue. For example:
Describe the Bug
When using the latest version of this module with version 2.21 of the Kubernetes provider (released this morning), the new
conflictsWith
rules break the provider configuration inauth.tf
.I've opened a PR with a fix that's working for me - #189.
Expected Behavior
When executing a
plan
with version2.8.1
of this module and version2.21.0
of the Kubernetes provider, I expect the plan to succeed.Steps to Reproduce
Upgrade to the latest Kubernetes provider:
terraform init -upgrade
orterragrunt init -upgrade
Attempt a plan:
terraform plan
orterragrunt plan
Screenshots
Error message:
Environment
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: