Skip to content

Commit 99dec5b

Browse files
committed
Update hashicorp/azurerm provider to minimum version 3.21
1 parent 9664003 commit 99dec5b

3 files changed

Lines changed: 15 additions & 8 deletions

File tree

CHANGELOG-v5.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ENHANCEMENTS:
99
* Add new variable `open_service_mesh_enabled` to make argument `open_service_mesh_enabled` configurable. ([#132](https://github.com/Azure/terraform-azurerm-aks/pull/132))
1010
* Remove `addon_profile` in the outputs since the block has been removed from provider 3.x. Extract embedded blocks inside `addon_profile` block into standalone outputs. ([#188](https://github.com/Azure/terraform-azurerm-aks/pull/188))
1111
* Add `nullable = true` to some variables to simplify the conditional expressions. ([#193](https://github.com/Azure/terraform-azurerm-aks/pull/193))
12-
* Add new variable `oidc_issuer_enabled` to make argument `oidc_issuer_enabled` configurable. ([#205](https://github.com/Azure/terraform-azurerm-aks/pull/205)
12+
* Add new variable `oidc_issuer_enabled` to make argument `oidc_issuer_enabled` configurable. ([#205](https://github.com/Azure/terraform-azurerm-aks/pull/205)
1313
* Add new output `oidc_issuer_url` to expose the created issuer URL from the module. [#206](https://github.com/Azure/terraform-azurerm-aks/pull/206))
1414
* Turn monitoring on in the test code. ([#201](https://github.com/Azure/terraform-azurerm-aks/pull/201))
1515
* Add new variables `private_dns_zone_id` and `private_cluster_public_fqdn_enabled` to make arguments `private_dns_zone_id` and `private_cluster_public_fqdn_enabled` configurable. ([#149](https://github.com/Azure/terraform-azurerm-aks/pull/149))
@@ -28,4 +28,11 @@ ENHANCEMENTS:
2828

2929
BUG FIXES:
3030

31-
* Change the incorrect description of variable `tags`. ([#175](https://github.com/Azure/terraform-azurerm-aks/pull/175))
31+
* Change the incorrect description of variable `tags`. ([#175](https://github.com/Azure/terraform-azurerm-aks/pull/175))
32+
33+
# 5.1.0 (August 31, 2022)
34+
35+
* Loose the restriction on `tls` provider's version to include major version greater than 3.0. [#228](https://github.com/Azure/terraform-azurerm-aks/issues/228)
36+
* Mark some outputs as sensitive. [#231](https://github.com/Azure/terraform-azurerm-aks/pull/231)
37+
* Output Kubernetes Cluster Name. [#234](https://github.com/Azure/terraform-azurerm-aks/pull/234)
38+
* Require minimum `hashicorp/azurerm` provider version to 3.21.0 (fixes for AKS 1.24) [#238](https://github.com/Azure/terraform-azurerm-aks/pull/238)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ Running the `terraform plan` first to inspect the plan is strongly advised.
2020

2121
### Terraform and terraform-provider-azurerm version restrictions
2222

23-
Now Terraform core's lowest version is v1.2.0 and terraform-provider-azurerm's lowest version is v3.3.0.
23+
Now Terraform core's lowest version is v1.2.0 and terraform-provider-azurerm's lowest version is v3.21.0.
2424

2525
### variable `user_assigned_identity_id` has been renamed.
2626

2727
variable `user_assigned_identity_id` has been renamed to `identity_ids` and it's type has been changed from `string` to `list(string)`.
2828

29-
### `addon_profile` in outputs is no longer available.
29+
### `addon_profile` in outputs is no longer available.
3030

31-
It has been broken into the following new outputs:
31+
It has been broken into the following new outputs:
3232

3333
* `aci_connector_linux`
3434
* `aci_connector_linux_enabled`
@@ -243,14 +243,14 @@ The following sections are generated by [terraform-docs](https://github.com/terr
243243
| Name | Version |
244244
|---------------------------------------------------------------------------|---------|
245245
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.2 |
246-
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | ~> 3.3 |
246+
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | ~> 3.21 |
247247
| <a name="requirement_tls"></a> [tls](#requirement\_tls) | >= 3.1 |
248248

249249
## Providers
250250

251251
| Name | Version |
252252
|---------------------------------------------------------------|---------|
253-
| <a name="provider_azurerm"></a> [azurerm](#provider\_azurerm) | ~> 3.3 |
253+
| <a name="provider_azurerm"></a> [azurerm](#provider\_azurerm) | ~> 3.21 |
254254
| <a name="provider_tls"></a> [tls](#provider\_tls) | >= 3.1 |
255255

256256
## Modules

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
azurerm = {
66
source = "hashicorp/azurerm"
7-
version = "~> 3.3"
7+
version = "~> 3.21"
88
}
99
tls = {
1010
source = "hashicorp/tls"

0 commit comments

Comments
 (0)