Skip to content

Commit 48eb05f

Browse files
committed
feat: add organization_id parameter to landing zone module and update stackit provider version to 0.93.0
1 parent 0eaafce commit 48eb05f

5 files changed

Lines changed: 7 additions & 11 deletions

File tree

examples/01-standalone/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ module "landing_zone" {
7878
source = "../../modules/landing-zone"
7979
for_each = var.landing_zones
8080

81+
organization_id = var.organization_id
8182
parent_container_id = module.governance.folder_container_ids["landing_zones"]
8283
naming_pattern = "${var.company_code}-lz-${each.value.project_code}-${each.value.env}"
8384
owner_email = each.value.owner_email

examples/01-standalone/terraform.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
stackit = {
66
source = "stackitcloud/stackit"
7-
version = "0.88.0"
7+
version = "0.93.0"
88
}
99
time = {
1010
source = "hashicorp/time"

examples/02-hub-spoke/outputs.tf

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,9 @@ output "connectivity_regional_project_id" {
2727
value = module.connectivity_regional.project_id
2828
}
2929

30-
output "connectivity_regional_pfsense_public_ip" {
31-
description = "The public IP of the pfSense firewall."
32-
value = module.connectivity_regional.pfsense_public_ip
33-
}
34-
35-
output "connectivity_regional_pfsense_wan_ip" {
36-
description = "The internal WAN IP of the pfSense firewall (used as next hop)."
37-
value = module.connectivity_regional.pfsense_wan_ip
30+
output "connectivity_regional_firewall_public_ip" {
31+
description = "The public IP of the firewall."
32+
value = module.connectivity_regional.firewall_public_ip
3833
}
3934

4035
output "sandbox_projects" {

examples/02-hub-spoke/terraform.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
stackit = {
66
source = "stackitcloud/stackit"
7-
version = "0.88.0"
7+
version = "0.93.0"
88
}
99
time = {
1010
source = "hashicorp/time"

modules/landing-zone/3-network.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ resource "stackit_routing_table" "this" {
66
organization_id = var.organization_id
77
network_area_id = var.network_area_id
88
name = var.naming_pattern
9-
system_routes = false
9+
system_routes = false
1010

1111
labels = local.labels
1212
}

0 commit comments

Comments
 (0)