-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
46 lines (38 loc) · 1.07 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
#----------------------------------------------------------------
# Variables Section
#----------------------------------------------------------------
variable "region" {
description = "AWS Region to spin up your node - Pass in during apply"
type = string
default = "us-west-2" # cheapest default region
}
variable "accesskey" {
description = "AWS Access Key - Pass in during apply"
type = string
default = ""
}
variable "secretkey" {
description = "AWS Secret Key - Pass in during apply"
type = string
default = ""
}
variable "public" {
description = "ETH Public Key - Pass in during apply"
type = string
default = ""
}
variable "passwd" {
description = "Password to unlock wallet file - Pass in during apply"
type = string
default = ""
}
variable alarm_email {
description = "Email which will receive monitoring alerts"
type = string
default = ""
}
variable "key_name" {
description = "SSH key name to attach to ec2 instance"
type = string
default = "keep-ecdsa"
}