-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.tf
46 lines (37 loc) · 793 Bytes
/
vars.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 "AWS_REGION" {
default = "eu-west-2"
}
variable "prefix" {
default = "aws-openvpn"
}
variable "vpc_cidr" {
type = string
default = "10.1.0.0/16"
}
variable "alb_subnets_cidr" {
type = list(string)
# default = ["10.1.0.0/21", "10.1.8.0/21"]
default = ["10.1.0.0/21"]
}
variable "OPENVPN_SERVER_AMI" {
default = {
"eu-west-2" = "ami-07d20571c32ba6cdc"
"us-west-2" = "ami-0075013580f6322a1"
"ap-northeast-2" = "ami-056a29f2eddc40520"
"ap-northeast-1" = "ami-0162fe8bfebb6ea16"
"eu-central-1" = "ami-07652eda1fbad7432"
"eu-west-3" = "ami-0062b622072515714"
}
}
variable "domain" {
type = string
}
variable "SUBDOMAIN" {
type = string
}
variable "ADMIN_PWD" {
type = string
}
variable "email" {
type = string
}