Parametrized more hardcoded values.

This commit is contained in:
2025-03-31 16:13:34 +02:00
parent c878380f33
commit 9fa068ee96
3 changed files with 16 additions and 16 deletions
+12 -6
View File
@@ -19,7 +19,6 @@ variable "spoke" {
}
variable "ssh" {
description = "SSH Key(s) definition"
type = list(object({
public_key = string
ssh_user = string
@@ -31,13 +30,20 @@ variable "ssh" {
}]
}
variable "vpn_external_ip" {
type = string
nullable = true
}
variable "peer_ip" {
description = "IP address of the remote peer VPN gateway"
type = string
type = string
}
variable "shared_secret" {
description = "Shared secret for the VPN tunnel"
type = string
sensitive = true
type = string
sensitive = true
}
variable "remote_selectors" {
type = list(string)
}