Finished LZ.

This commit is contained in:
2025-04-25 06:45:10 +02:00
parent da3893a912
commit 5968cb558e
6 changed files with 298 additions and 68 deletions
+14
View File
@@ -45,3 +45,17 @@ variable "shared_secret" {
variable "remote_selectors" {
type = list(string)
}
# Wireguard settings
variable "wireguard" {
type = object({
address_space = string
private_key = string
public_key = string
remote_public_key = string
remote_address_space = string
})
sensitive = true
nullable = true
default = null
}