v0.32.0 Breaking changes for Kubernetes provider v2
Update to support kubernetes provider v2 @woz5999 (#93)
Breaking Changes
- This module requires
kubernetes
Terraform provider>= 2.0
, which introduced breaking changes to the provider. This module has made additional breaking changes in response. - Input
kubernetes_load_config_file
has been removed because the correspondingload_config_file
option to the Kubernetes provider has been removed in provider version 2.0. - Input
kubernetes_config_path
has been removed as its use case (#77, #78) was for one-time migration and in general we want to discourage its use. If needed anyway, a value can be provided via theKUBE_CONFIG_PATHS
environment variable. If a more compelling use case is made, it will be a non-breaking change to restore it. - Users of previous versions of this module can continue to use those versions by pinning the Kubernetes provider version in their root module. For Terraform >= 0.12.26, add this block to your
required_providers
block
kubernetes = {
source = "hashicorp/kubernetes"
version = "~> 1.11"
}
what
- Update to support kubernetes provider v2
why
- Better. Stronger. Faster.