Finished first version of network, network-peering and linux-vm modules.

This commit is contained in:
2025-03-31 10:10:39 +02:00
parent 6924f75c86
commit 93537e5da5
6 changed files with 145 additions and 61 deletions
+23
View File
@@ -0,0 +1,23 @@
variable "left" {
description = "The left side of the peering connection."
type = object({
project_id = string
network_id = string
network_name = string
})
}
variable "right" {
description = "The right side of the peering connection."
type = object({
project_id = string
network_id = string
network_name = string
})
}
variable "hub_spoke" {
type = bool
default = false
description = "Set to true if the peering is hub-spoke."
}