Add network and subnetwork path

This commit is contained in:
Andrew Cravenho 2018-09-26 21:41:44 -04:00
parent 19ff8bb6a4
commit b3b80eb021
1 changed files with 13 additions and 4 deletions

View File

@ -101,15 +101,24 @@ variable "chain_subnetwork" {
} }
} }
variable "chain_network_icon" { variable "chain_network_path" {
description = "A map of chain names to the network iconn" description = "A map of chain names to the network name"
default = { default = {
"sokol" = "%{\"POA Core\" => \"https://blockscout.com/poa/core\", \"POA Sokol\" => \"https://blockscout.com/poa/sokol\"}" "sokol" = "poa"
} }
} }
variable "chain_network_navigation" { variable "chain_subnetwork_path" {
description = "A map of chain names to the subnetwork name"
default = {
"sokol" = "sokol"
}
}
variable "chain_network_icon" {
description = "A map of chain names to the network navigation" description = "A map of chain names to the network navigation"
default = { default = {