Releases: cloudcommons/terraform-azure-kubernetes
v0.2.4 Security features
This release adds some security features by default:
- http application routing is now disabled by default.
- api_server_authorized_ip_ranges can now be set.
- pod_security_policy can now be enabled.
Thank you @cmendible !
Terraform Kubernetes provider update
This release fixes #10 adding support to Terraform Kubernetes Provider v1.11.1
v0.2.2
v0.2.1 Changes to VNET default values
This release changes the default values to the VNET, including the order on which the Cluster Subnet is declared.
v0.2.0 Update to AzureRM 2.0
This release bumps AzureRM to v2.0.
If you wish to use AzureRM v1.x, please use module version v0.x
v0.1.8 - Added OMS flag
This release allows you to add OMS monitoring to a Kubernetes cluster.
It will be automatically enable OMS for the cluster if you inform the oms_log_analytics_workspace_id
input variable.
v0.1.7 Fixes auto scaler issue when disabled
This release fixes #3
In the past, users willing to disable auto scaler should set it to false and explicitly set min_count and max_count to 0, as we were using default values. This is confusing and misleading.
Actions taken to improve developer experience:
- When auto scaler is set to false, terraform will automatically set auto_scaling_min_count and auto_scaling_max_count to '0'
- Auto scaler is now disabled by default. Developers have to explicitly turn it on and set auto_scaling_min_count and auto_scaling_max_count