terraform-aws-ovpn-server/variables.tf

19 lines
402 B
HCL

variable "region" {
type = string
description = "region to deploy openvpn server"
}
variable "instance_size" {
type = string
description = "ec2 instance size to deploy openvpn server"
}
variable "ovpn_config_file" {
type = string
description = "name of the ovpn config file"
}
variable "public_ip" {
type = string
description = "public ip of the client"
}