forked from DNXLabs/terraform-aws-openvpn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_variables.tf
47 lines (36 loc) · 1.07 KB
/
_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
42
43
44
45
46
47
# == REQUIRED VARS
variable "name" {
default = "default"
description = "Name of your ECS service"
}
variable "cluster_name" {}
variable "task_role_arn" {}
variable "vpc_id" {}
variable "image" {
default = "dnxsolutions/openvpn:2.2.0"
}
variable "requester_cidrs" {
default = []
type = list(string)
description = "List of CIDRs to add to openvpn-access SG so clients can connect to resources"
}
variable "users" {
default = ""
description = "List of users (comma-separated, no spaces) to create keys"
}
variable "revoke_users" {
default = ""
description = "List of users (comma-separated, no spaces) to revoke previously created keys"
}
variable "domain_name" {
default = "vpn.address"
description = "Domain name to point to openvpn container for external access"
}
variable "route_push" {
default = ""
description = "List of routes to push to client, comma-separated (ex: '10.100.0.0 255.255.0.0,10.200.0.0 255.255.0.0')"
}
variable "mfa" {
default = "false"
description = "Enable or disable MFA for VPN users"
}