-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
46 lines (45 loc) · 1.05 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
variable "organization_name" {
description = "Organization name"
type = string
}
variable "project-name" {
description = "Project name"
type = string
}
variable "aws-vpn-client-list" {
description = "VPN client list"
type = set(string)
}
variable "vpc_id" {
description = "VPC ID"
type = string
}
variable "subnets_id" {
description = "Subnet list for client vpn network association"
type = list(string)
}
variable "client_cidr_block" {
description = "AWS VPN client cidr block"
type = string
}
variable "split_tunnel" {
description = "Split tunnel traffic"
type = bool
}
variable "vpn_inactive_period" {
description = "VPN inactive period in seconds"
type = number
}
variable "session_timeout_hours" {
description = "Session timeout hours"
type = number
}
variable "logs_retention_in_days" {
description = "VPN client list"
type = number
}
variable "additional_routes" {
description = "Additional Routes"
type = list(map(string))
default = []
}