Parametrized more hardcoded values.
This commit is contained in:
+12
-6
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user