Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down
2 changes: 1 addition & 1 deletion _README_header.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down
2 changes: 1 addition & 1 deletion docs/wiki/[User-Guide]-Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.

Expand Down
2 changes: 1 addition & 1 deletion docs/wiki/[User-Guide]-Upgrade-from-v5.2.1-to-v6.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion examples/400-multi-with-orchestration/modules/core/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.107.0"
version = "3.108.0"
}
}
}
Expand Down
2 changes: 2 additions & 0 deletions resources.virtual_wan.tf
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,7 @@ resource "azurerm_virtual_hub_connection" "virtual_wan" {

# Set explicit dependencies
depends_on = [
azurerm_express_route_gateway.virtual_wan,
azurerm_resource_group.connectivity,
azurerm_resource_group.virtual_wan,
azurerm_virtual_wan.virtual_wan,
Expand All @@ -382,6 +383,7 @@ resource "azurerm_virtual_hub_routing_intent" "virtual_wan" {

# Set explicit dependencies
depends_on = [
azurerm_express_route_gateway.virtual_wan,
azurerm_firewall.virtual_wan,
azurerm_resource_group.connectivity,
azurerm_resource_group.virtual_wan,
Expand Down
2 changes: 1 addition & 1 deletion terraform.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.107"
version = "~> 3.108"
configuration_aliases = [
azurerm.connectivity,
azurerm.management,
Expand Down
2 changes: 1 addition & 1 deletion tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion tests/modules/test_001_baseline/terraform.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion tests/modules/test_002_add_custom_core/terraform.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion tests/modules/test_003_add_mgmt_conn/terraform.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions tests/scripts/azp-strategy.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"

#######################################
Expand Down