-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathvariables.tf
More file actions
54 lines (52 loc) · 1.17 KB
/
variables.tf
File metadata and controls
54 lines (52 loc) · 1.17 KB
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
variable "organization_name" {
description = "Organization name!?"
type = string
}
variable "project-name" {
description = "Project name!?"
type = string
}
variable "environment" {
description = "Environment name!?"
type = string
}
variable "tags" {
description = "Custom, user-defined tags"
type = map(any)
default = {
Terraform = "true",
Environment = "production",
}
}
variable "aws-vpn-client-list" {
description = "VPN client list!?"
type = list(string)
}
variable "vpc_id" {
description = "VPC ID"
type = string
}
variable "subnet_id" {
description = "Subnet for client vpn network association"
type = 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
}