This commit is contained in:
Héctor Molinero Fernández
2021-06-14 22:49:37 +02:00
parent 2b83b7b75c
commit e9d9202616
7 changed files with 55 additions and 55 deletions

View File

@@ -1,43 +1,43 @@
variable "hcloud_api_token" {
type = string
type = string
description = "Hetzner Cloud API token"
default = ""
default = ""
}
variable "wg_server_name" {
type = string
type = string
description = "Server name"
default = "wireguard"
default = "wireguard"
}
variable "wg_server_type" {
type = string
type = string
description = "Server type"
default = "cx11"
default = "cx11"
}
variable "wg_server_location" {
type = string
type = string
description = "Server location"
default = "fsn1"
default = "fsn1"
}
variable "wg_server_ssh_publickey" {
type = string
type = string
description = "SSH public key"
}
variable "wg_server_ssh_publickey_name" {
type = string
type = string
description = "SSH public key name"
}
variable "wg_server_own_privatekey" {
type = string
type = string
description = "WireGuard private key"
}
variable "wg_server_peer_publickeys" {
type = list(string)
type = list(string)
description = "WireGuard peer public keys"
}