Skip to content

Commit 2f884e1

Browse files
feat: use pattern modules for connectivity (#222)
<!-- Thank you for submitting a Pull Request. Please fill out the template below.--> ## Overview/Summary Replace the connectivity submodules with AVM pattern modules to simplify the user upgrade process. ## This PR fixes/adds/changes/removes N/A ### Breaking Changes None, state is the same. ## Testing Evidence Ran apply with main, then ran apply with this branch. All changes were for modtm only. ## As part of this Pull Request I have - [x] Checked for duplicate [Pull Requests](https://github.com/Azure/alz-terraform-accelerator/pulls) - [x] Associated it with relevant [issues](https://github.com/Azure/alz-terraform-accelerator/issues), for tracking and closure. - [x] Ensured my code/branch is up-to-date with the latest changes in the `main` [branch](https://github.com/Azure/alz-terraform-accelerator/tree/main) - [x] Performed testing and provided evidence. - [x] Updated relevant and associated documentation.
1 parent 1f0d36d commit 2f884e1

24 files changed

+4
-947
lines changed

templates/platform_landing_zone/main.connectivity.hub.and.spoke.virtual.network.tf

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module "hub_and_spoke_vnet" {
2-
source = "./modules/hub-and-spoke-vnet"
2+
source = "Azure/avm-ptn-alz-connectivity-hub-and-spoke-vnet/azurerm"
3+
version = "0.1.0"
34

45
count = local.connectivity_hub_and_spoke_vnet_enabled ? 1 : 0
56

templates/platform_landing_zone/main.connectivity.virtual.wan.tf

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module "virtual_wan" {
2-
source = "./modules/virtual-wan"
2+
source = "Azure/avm-ptn-alz-connectivity-virtual-wan/azurerm"
3+
version = "0.1.0"
34

45
count = local.connectivity_virtual_wan_enabled ? 1 : 0
56

templates/platform_landing_zone/modules/hub-and-spoke-vnet/locals.bastion.tf

-24
This file was deleted.

templates/platform_landing_zone/modules/hub-and-spoke-vnet/locals.ddos.tf

-4
This file was deleted.

templates/platform_landing_zone/modules/hub-and-spoke-vnet/locals.dns.tf

-47
This file was deleted.

templates/platform_landing_zone/modules/hub-and-spoke-vnet/locals.firewall.tf

-16
This file was deleted.

templates/platform_landing_zone/modules/hub-and-spoke-vnet/locals.gateways.tf

-19
This file was deleted.

templates/platform_landing_zone/modules/hub-and-spoke-vnet/locals.subnets.tf

-42
This file was deleted.

templates/platform_landing_zone/modules/hub-and-spoke-vnet/locals.tf

-14
This file was deleted.

templates/platform_landing_zone/modules/hub-and-spoke-vnet/main.tf

-171
This file was deleted.

0 commit comments

Comments
 (0)