-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.tf
89 lines (65 loc) · 2.39 KB
/
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
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
81
82
83
84
85
86
87
88
89
###########################################################
# #
# Scripter: Stinky-Fox #
# Usage: Define variables and their default values #
# Version : 1.0 #
# #
###########################################################
###################################################
# provider specific variables #
###################################################
variable "awsRegion" {
type = string
description = "AWS region to use"
default = "us-east-2"
}
variable "awsAccessKey" {
type = string
description = "AWS Access Key"
}
variable "awsSecretKey" {
type = string
description = "AWS Secret key"
}
###################################################
# misc variables #
###################################################
variable "publicKeyPath" {
type = string
description = "path to public key"
default = "id_rsa.pub"
}
variable "publicZoneId" {
type = string
description = "zoneID in Route 53"
}
variable "myIP" {
type = string
description = "Your IP address in format X.X.X.X/X"
}
###################################################
# EC2 specific variables #
###################################################
variable "instanceSize" {
type = string
description = "Instance type for Amazon Linux 2"
default = "t2.micro"
}
variable "instanceName" {
type = string
description = "Define a public name for this server. Defaut is a tribute to Monica Bellucci and her role in The Matrix movie"
default = "persephone"
}
###################################################
# Misc variables #
###################################################
variable "vpcName" {
type = string
description = "Define a VPC name. Default is a tribute to the Ghost in the Shell japanese manga/anime."
default = "section-nine"
}
variable "keyName" {
type = string
description = "Define a key name that will be used. Default is a tribute to the main cyborg character in the Ghost in the Shell japanese manga/anime"
default = "Motoko Kusanagi"
}