-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariables_aws_ebs.tf
More file actions
37 lines (31 loc) · 872 Bytes
/
variables_aws_ebs.tf
File metadata and controls
37 lines (31 loc) · 872 Bytes
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
# ------------------------------------------------------------------------------
# EBS Volumes
# ------------------------------------------------------------------------------
# bitcoin
variable "bitcoin_ebs_volume_id" {
type = string
description = "The volume ID."
}
variable "bitcoin_ebs_volume_name" {
type = string
description = "The volume name."
}
variable "bitcoin_ebs_volume_device_name" {
type = string
description = "The device name of the volume."
default = "/dev/sdn"
}
# electrs
variable "electrs_ebs_volume_id" {
type = string
description = "The volume ID."
}
variable "electrs_ebs_volume_name" {
type = string
description = "The volume name."
}
variable "electrs_ebs_volume_device_name" {
type = string
description = "The device name of the volume."
default = "/dev/sdp"
}