-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
60 lines (46 loc) · 982 Bytes
/
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
variable "application" {
default = "openethereum"
}
variable "provisionersrc" {
default = "gustavobelfort/terraform-openethereum"
}
variable "name" {
default = "openethereum"
}
variable "vpc_cidr" {
description = "CIDR for the whole VPC"
default = "10.0.0.0/16"
}
variable "public_subnet_cidr" {
description = "CIDR for the Public Subnet"
default = "10.0.0.0/24"
}
variable "private_subnet_cidr" {
description = "CIDR for the Private Subnet"
default = "10.0.1.0/24"
}
variable "eth_count" {
description = "The amount of OpenEthereum instances to create"
default = 1
}
variable "ubuntu_account_number" {
default = "099720109477"
}
variable "instance_type" {
default = "t2.micro"
}
variable "ssh_pubkey" {
default = ""
}
variable "ssh_privkey" {
default = ""
}
variable "region" {
default = "us-east-1"
}
variable "aws_profile" {
default = "default"
}
variable "alarms_email" {
default = "gustavombelfort@gmail.com"
}