Skip to content

Commit

Permalink
Add network to demo
Browse files Browse the repository at this point in the history
  • Loading branch information
fwikestad committed Apr 17, 2024
1 parent a25e51d commit 8b80f6d
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions LZ/Demo/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,19 @@ module "alz_architecture" {
}
}



module "network" {
source = "git::https://github.com/fwikestad/terraform-spoke-network"

hub_vnet_name = "atealab-hub-norwayeast"
hub_vnet_resource_group_name = "atealab-hub-norwayeast"

environment = "prod"
landingzone_name = "Demo"

vnet_address_space = [ "10.1.0.0/16" ]
subnets = {
snet01 = {
address_prefix = "10.1.0.0/24"
}
}
}

0 comments on commit 8b80f6d

Please sign in to comment.