diff --git a/README.md b/README.md index a94f2c708..92d421711 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ This allows customers to address concerns around managing large state files, or ## Terraform versions -This module has been tested using Terraform `1.7.0` and AzureRM Provider `3.107.0` as a baseline, and various versions to up the latest at time of release. +This module has been tested using Terraform `1.7.0` and AzureRM Provider `3.108.0` as a baseline, and various versions to up the latest at time of release. In some cases, individual versions of the AzureRM provider may cause errors. If this happens, we advise upgrading to the latest version and checking our [troubleshooting](https://github.com/Azure/terraform-azurerm-caf-enterprise-scale/wiki/Troubleshooting) guide before [raising an issue](https://github.com/Azure/terraform-azurerm-caf-enterprise-scale/issues). diff --git a/_README_header.md b/_README_header.md index c75d6a732..4f6abee04 100644 --- a/_README_header.md +++ b/_README_header.md @@ -51,7 +51,7 @@ This allows customers to address concerns around managing large state files, or ## Terraform versions -This module has been tested using Terraform `1.7.0` and AzureRM Provider `3.107.0` as a baseline, and various versions to up the latest at time of release. +This module has been tested using Terraform `1.7.0` and AzureRM Provider `3.108.0` as a baseline, and various versions to up the latest at time of release. In some cases, individual versions of the AzureRM provider may cause errors. If this happens, we advise upgrading to the latest version and checking our [troubleshooting](https://github.com/Azure/terraform-azurerm-caf-enterprise-scale/wiki/Troubleshooting) guide before [raising an issue](https://github.com/Azure/terraform-azurerm-caf-enterprise-scale/issues). diff --git a/docs/wiki/[User-Guide]-Getting-Started.md b/docs/wiki/[User-Guide]-Getting-Started.md index 37f8d6bce..8f93bffed 100644 --- a/docs/wiki/[User-Guide]-Getting-Started.md +++ b/docs/wiki/[User-Guide]-Getting-Started.md @@ -3,7 +3,7 @@ Before getting started with this module, please take note of the following considerations: -1. This module requires a minimum `azurerm` provider version of `3.107.0`. +1. This module requires a minimum `azurerm` provider version of `3.108.0`. 1. This module requires a minimum Terraform version `1.7.0`. diff --git a/docs/wiki/[User-Guide]-Upgrade-from-v5.2.1-to-v6.0.0.md b/docs/wiki/[User-Guide]-Upgrade-from-v5.2.1-to-v6.0.0.md index d92cc6ef6..fecc69477 100644 --- a/docs/wiki/[User-Guide]-Upgrade-from-v5.2.1-to-v6.0.0.md +++ b/docs/wiki/[User-Guide]-Upgrade-from-v5.2.1-to-v6.0.0.md @@ -5,7 +5,7 @@ This is a major release, following the update of Azure Landing Zones with it's m ## ‼️ Breaking Changes -1. Minimum AzureRM provider version now `3.107.0` +1. Minimum AzureRM provider version now `3.108.0` 2. Minimum Terraform version now `1.7.0` 3. `var.configure_management_resources` schema change, removing legacy components and adding support for AMA resources diff --git a/examples/400-multi-with-orchestration/modules/core/main.tf b/examples/400-multi-with-orchestration/modules/core/main.tf index 48d99f4e6..bfc214842 100644 --- a/examples/400-multi-with-orchestration/modules/core/main.tf +++ b/examples/400-multi-with-orchestration/modules/core/main.tf @@ -5,7 +5,7 @@ terraform { required_providers { azurerm = { source = "hashicorp/azurerm" - version = "3.107.0" + version = "3.108.0" } } } diff --git a/tests/README.md b/tests/README.md index db98f634a..061206e4e 100644 --- a/tests/README.md +++ b/tests/README.md @@ -151,7 +151,7 @@ The current strategy consists of running tests against the following version com - Terraform versions: - Minimum version supported by the module (`1.7.0`) - Azure provider for Terraform versions: - - Minimum version supported by the module (`v3.107.0`) + - Minimum version supported by the module (`v3.108.0`) - Latest version The latest versions are determined programmatically by querying the publisher APIs. diff --git a/tests/modules/test_001_baseline/terraform.tf b/tests/modules/test_001_baseline/terraform.tf index dd5cd3f33..2bf501b25 100644 --- a/tests/modules/test_001_baseline/terraform.tf +++ b/tests/modules/test_001_baseline/terraform.tf @@ -2,7 +2,7 @@ terraform { required_providers { azurerm = { source = "hashicorp/azurerm" - version = "3.107.0" + version = "3.108.0" configuration_aliases = [ azurerm.connectivity, azurerm.management, diff --git a/tests/modules/test_002_add_custom_core/terraform.tf b/tests/modules/test_002_add_custom_core/terraform.tf index dd5cd3f33..2bf501b25 100644 --- a/tests/modules/test_002_add_custom_core/terraform.tf +++ b/tests/modules/test_002_add_custom_core/terraform.tf @@ -2,7 +2,7 @@ terraform { required_providers { azurerm = { source = "hashicorp/azurerm" - version = "3.107.0" + version = "3.108.0" configuration_aliases = [ azurerm.connectivity, azurerm.management, diff --git a/tests/modules/test_003_add_mgmt_conn/terraform.tf b/tests/modules/test_003_add_mgmt_conn/terraform.tf index dd5cd3f33..2bf501b25 100644 --- a/tests/modules/test_003_add_mgmt_conn/terraform.tf +++ b/tests/modules/test_003_add_mgmt_conn/terraform.tf @@ -2,7 +2,7 @@ terraform { required_providers { azurerm = { source = "hashicorp/azurerm" - version = "3.107.0" + version = "3.108.0" configuration_aliases = [ azurerm.connectivity, azurerm.management, diff --git a/tests/scripts/azp-strategy.ps1 b/tests/scripts/azp-strategy.ps1 index f78a93c82..59798ed04 100755 --- a/tests/scripts/azp-strategy.ps1 +++ b/tests/scripts/azp-strategy.ps1 @@ -50,11 +50,11 @@ $terraformVersionsCount = $terraformVersions.Count ####################################### # Terraform AzureRM Provider Versions -# - Base Version: (3.107.0) +# - Base Version: (3.108.0) # - Latest Versions: (latest 1) ####################################### -$azurermProviderVersionBase = "3.107.0" +$azurermProviderVersionBase = "3.108.0" $azurermProviderVersionLatest = "3.116.0" #######################################