This repository was archived by the owner on Jan 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathvariables.tf
99 lines (79 loc) · 3.14 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
variable "region" {
description = "Target AWS Region. This must be pre-initialized from `_terraform_init` run"
}
variable "network_name" {
description = "Identify the Quorum network from multiple deployments. This must be pre-initialized from `_terraform_init` run"
}
variable "number_of_nodes" {
description = "Number of Quorum nodes. Default is 7"
default = "7"
}
variable "bastion_public_subnet_id" {
description = "Public Subnet for Bastion node"
}
variable "subnet_ids" {
type = "list"
description = "List of subnet ids used by ECS to create instances. These subnets must be routable to the internet, via Internet Gateway or NAT instance"
}
variable "is_igw_subnets" {
description = "Indicate that if subnets supplied in subnet_ids are routable to the internet via Internet Gateway"
}
variable "quorum_docker_image" {
description = "URL to Quorum docker image to be used"
default = "quorumengineering/quorum"
}
variable "quorum_docker_image_tag" {
description = "Quorum Docker image tag to be used"
default = "latest"
}
variable "constellation_docker_image" {
description = "URL to Constellation docker image to be used. Only needed if tx_privacy_engine is constellation"
default = "quorumengineering/constellation"
}
variable "constellation_docker_image_tag" {
description = "Constellation Docker image tag to be used"
default = "latest"
}
variable "tessera_docker_image" {
description = "URL to Constellation docker image to be used. Only needed if tx_privacy_engine is constellation"
default = "quorumengineering/tessera"
}
variable "tessera_docker_image_tag" {
description = "Tessera Docker image tag to be used"
default = "latest"
}
variable "aws_cli_docker_image" {
description = "To interact with AWS services"
default = "senseyeio/alpine-aws-cli"
}
variable "aws_cli_docker_image_tag" {
description = "AWS CLI Docker image tag to be used"
default = "latest"
}
variable "consensus_mechanism" {
description = "Concensus mechanism used in the network. Supported values are raft/istanbul/clique"
default = "raft"
}
variable "is_ethereum_network" {
description = "indicates if the platform used is ethereum or quorum. if it is ethereum then tessera is turned off and clique consensus is used. Supported values are true/false"
default = false
}
variable "is_ethereum_v1_9_x" {
description = "indicates if the go-ethereum version is 1.9. Supported values are true/false. Only used when is_ethereum_network is true"
default = true
}
variable "tx_privacy_engine" {
description = "Engine that implements transaction privacy. Supported values are constellation/tessera"
default = "tessera"
}
variable "quorum_bucket" {
description = "This is to store shared data during the bootstrap. This must be pre-initialized from `_terraform_init` run"
}
variable "quorum_bucket_kms_key_arn" {
description = "To encrypt/decrypt objects stored in quorum_bucket. This must be pre-initialized from `_terraform_init` run"
}
variable "access_bastion_cidr_blocks" {
type = "list"
description = "CIDR blocks that will be added to allow SSH to Bastion Node"
default = []
}