-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
41 lines (34 loc) · 965 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
variable "aws_region" {
type = string
description = "The full name of the region to use"
default = "eu-west-2"
}
variable "aws_subnet_name" {
description = "The VPN server public subnet name"
type = string
}
variable "aws_route53_zone_name" {
description = "The public hosted zone name"
type = string
}
variable "vpn_server_domain_name" {
description = "The VPN server fully qualified domain name"
type = string
}
variable "aws_instance_type" {
description = "VPN server instance type"
type = string
default = "t4g.nano"
}
variable "aws_rsa_pub" {
description = "key pair's public key to be registered with AWS to allow logging-in to EC2 instances"
type = string
}
variable "vpn_user_name" {
description = "A VPN user name to be created"
type = string
}
variable "vpn_admin_email" {
description = "An email address to be used by the certbot"
type = string
}