-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update variable name, add required provider, and remove quotes
Signed-off-by: Cari Albritton <cari.albritton@kaleido.io>
- Loading branch information
Showing
2 changed files
with
21 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,65 @@ | ||
variable "kaleido_api_key" { | ||
type = "string" | ||
type = string | ||
description = "Kaleido API Key" | ||
} | ||
|
||
variable "kaleido_region" { | ||
type = "string" | ||
type = string | ||
description = "Can be '-ap' for Sydney, or '-eu' for Frankfurt. Defaults to US" | ||
default = "" | ||
} | ||
|
||
variable "provider" { | ||
type = "string" | ||
variable "provider_type" { | ||
type = string | ||
default = "pantheon" | ||
description = "Protocol implementation to deploy." | ||
} | ||
|
||
variable "consensus" { | ||
type = "string" | ||
type = string | ||
default = "ibft" | ||
description = "Consensus mechanism." | ||
} | ||
|
||
variable "multi_region" { | ||
type = "string" | ||
type = string | ||
default = true | ||
description = "Make the environment multi-region compatible to support additional regions, now or in the future" | ||
} | ||
|
||
variable "node_size" { | ||
type = "string" | ||
type = string | ||
default = "small" | ||
description = "Size of the node" | ||
} | ||
|
||
variable "node_count" { | ||
type = "string" | ||
type = string | ||
default = 4 | ||
description = "Count of nodes to create - each will have its own membership" | ||
} | ||
|
||
variable "service_count" { | ||
type = "string" | ||
type = string | ||
default = 1 | ||
description = "Count of services to create - each will have its own membership" | ||
} | ||
|
||
variable "consortium_name" { | ||
type = "string" | ||
type = string | ||
default = "My Business Network" | ||
} | ||
|
||
variable "env_name" { | ||
type = "string" | ||
type = string | ||
default = "Development" | ||
} | ||
|
||
variable "env_description" { | ||
type = "string" | ||
type = string | ||
default = "Created with Terraform" | ||
} | ||
variable "network_description" { | ||
type = "string" | ||
type = string | ||
default = "Modern Business Network - Built on Kaleido" | ||
} |