19 lines
875 B
Terraform
19 lines
875 B
Terraform
|
variable "vpn_public_key" {
|
||
|
description = "Public ssh key for usage on aws instances"
|
||
|
default = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCusAQBVqRtFHb1gr4p6cowXSsX4VxRhKAGRcjPUVCF7NPHsi4UphkhLC6goyLmLZiUi03DnHXTfQ338s+nLMZpYejqbtErT1DuieMYlfkjUN5EtJphzgOwME0hY12GYsDY7mlSRmWuK5R100AMUqnMtGny4FktYZcUMTgXqJ6eEs7N0JjwF0cZJVbzUv4HRK5A0EebcTuvI2E8dYrzAGBaHAzna6zBouqEN9iRjVnzItSKO8rFAzlfxYC1+NkwTclFvYNMpPRzMw+5JCaKfKTB9nrYW3dHcvk4aF1Q5I39hfc5NIFosB96Ex4296VCDqa2Q/J20Sk01h7yU8fLJX45 stefan@keevan.netpioneer.de"
|
||
|
}
|
||
|
|
||
|
variable "vpn_zone_name" {
|
||
|
description = "route53 zone in which the hostname is registered"
|
||
|
default = "appments.net"
|
||
|
}
|
||
|
|
||
|
variable "vpn_host_name" {
|
||
|
description = "route53 host name that is registered for the VPN server"
|
||
|
default = "illevpn"
|
||
|
}
|
||
|
|
||
|
variable "aws_region" {
|
||
|
description = "AWS region in which we start the VPN server"
|
||
|
default = "us-east-1"
|
||
|
}
|