Working Landing Zone.

This commit is contained in:
2025-03-30 11:31:28 +02:00
commit a427e31bb6
10 changed files with 216 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
variable "name" {
description = "The name of the network."
type = string
}
# A Cloud NAT will be created in the same region as the first subnet.
variable "subnets" {
description = "A list of subnets with names and CIDRs."
type = list(object({
name = string
cidr = string
region = string
}))
validation {
condition = var.subnets[0].region != null
error_message = "The region for the first subnet must be specified."
}
}