generated from cloudposse/terraform-example-module
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathvariables.tf
69 lines (56 loc) · 1.64 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Network
variable "vpn_client_cidr" {
type = string
description = "Network CIDR for allocating IPs to VPN clients"
}
variable "vpc_id" {
type = string
description = "VPC ID to associate clients. Must be supplied if subnet_ids is set."
default = null
}
variable "subnet_ids" {
type = list(string)
description = "Subnet ID to associate clients"
default = []
}
variable "allowed_ingress_network_cidr" {
type = string
description = "CIDR to which VPC clients are allowed access"
default = "0.0.0.0/0"
}
variable "security_groups" {
type = list(string)
description = "Security groups to associate with Client VPN network association"
default = null
}
variable "enable_internet_access" {
type = bool
description = "If true, add a route to 0.0.0.0/0 on VPN endpoint route table. Your VPN subnet must also have a route to an Internet Gateway."
default = false
}
// Authentication
variable "cert_dir" {
type = string
description = "Local storage location for generated certs. Relative to module root."
default = "certs"
}
variable "config_dir" {
type = string
description = "Local storage location for downloaded VPN config. Relative to module root."
default = "config"
}
variable "cert_domain" {
type = string
description = "Domain suffix for certificates"
}
// CloudWatch Logs
variable "logging_enabled" {
type = bool
description = "Enable CloudWatch logging"
default = false
}
variable "cloudwatch_log_retention_days" {
type = number
description = "Retention in days for CloudWatch Log Group"
default = 30
}