-
Notifications
You must be signed in to change notification settings - Fork 12
/
variables.tf
71 lines (60 loc) · 1.47 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
variable "kaleido_api_key" {
type = string
description = "Kaleido API Key"
}
variable "kaleido_api_url" {
type = string
description = "The regional API URL you use will determine the region your metadata is located in"
default = "https://console.kaleido.io/api/v1"
}
variable "cloud" {
type = string
description = "The deployment cloud for your environment - sample deploys all nodes to a single cloud"
default = "azure"
}
variable "region" {
type = string
description = "The deployment region for your environment - sample deploys all nodes to a single region"
default = "westus2"
}
variable "provider_type" {
type = string
default = "quorum"
description = "Protocol implementation to deploy."
}
variable "consensus" {
type = string
default = "ibft"
description = "Consensus mechanism."
}
variable "block_period" {
type = number
default = 5
description = "Block period."
}
variable "node_size" {
type = string
default = "medium"
description = "Size of the node"
}
variable "member_count" {
type = string
default = 2
description = "Count of members to create - each will have one of each resource"
}
variable "consortium_name" {
type = string
default = "My Business Network"
}
variable "env_name" {
type = string
default = "Development"
}
variable "env_description" {
type = string
default = "Created with Terraform"
}
variable "network_description" {
type = string
default = "Modern Business Network - Built on Kaleido"
}