-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathvariables.tf
80 lines (61 loc) · 1.2 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
70
71
72
73
74
75
76
77
78
79
80
variable "ami" {
description = "AMI to be used, default is Ubuntu 18.67 Bionic"
default = "ami-090f10efc254eaf55"
}
variable "region" {
description = "AWS Region"
}
variable "vpc" {
description = "AWS VPC"
}
variable "profile" {
description = "AWS Profile"
}
variable "instancetype" {
description = "EC2 instance type"
}
variable "instancename" {
description = "EC2 instance name"
}
variable "keyname" {
description = "SSH key name"
}
variable "key_country" {
description = "key_country"
}
variable "key_province" {
description = "key_province"
}
variable "key_city" {
description = "key_city"
}
variable "key_org" {
description = "key_org"
}
variable "key_email" {
description = "key_email"
}
variable "key_ou" {
description = "key_ou"
}
variable "passwd" {
description = "OpenVPN admin password"
}
variable "domain" {
description = "OpenVPN server TLD"
}
variable "sslmail" {
description = "E-Mail for LetsEncrypt"
}
variable "owner" {
description = "Owner Tag for AWS console"
}
variable "subdomain" {
description = "Subdomain"
}
variable "subnetid" {
description = "Subnet for the VPN Instance"
}
variable "adminurl" {
description = "OpenVPN Admin login"
}