-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
68 lines (48 loc) · 1.09 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
# Variables for openvpn VPC
variable "openvpn_aws_region" {
default = "us-east-1"
}
variable "openvpn_ami" {
type = map(string)
default = {
us-east-1 = "ami-07a8d85046c8ecc99" # OpenVPN AS AMI
}
}
variable "openvpn_ec2_user" {
default = "openvpnas"
}
variable "openvpn_ingress_ports" {
type = list(number)
description = "list of ingress ports"
default = [22, 80, 443, 943, 1194]
}
# Misc settings
variable "openvpn_admin_pass" {
default = "openvpn123"
}
variable "openvpn_marti_pass" {
default = "marti123"
}
#### customer_vpc module vars
variable "customer_aws_region" {
default = "us-east-1"
}
variable "customer_ami" {
type = map(string)
default = {
us-east-1 = "ami-03efe20853d0a91d5" //"ami-0cfee17793b08a293"
}
}
variable "customer_ec2_user" {
default = "ubuntu"
}
variable "customer_ingress_ports" {
type = list(number)
description = "ingress ports for customer ssh_http_allowed SG"
default = [22, 80]
}
# Route 53
variable "zone_name" {
description = "The name of the hosted zone"
default = "martinhristov.xyz."
}