-
-
Save matilote/897bbf5ed7bf27e4f1b9dccfb0dbbb40 to your computer and use it in GitHub Desktop.
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
variable "pvt_key" {} | |
variable "do_token" {} | |
variable "ssh_fingerprint" {} | |
variable "gateway" {} | |
variable "hostname" { | |
type = "string" | |
} | |
variable "size" { | |
type = "map" | |
default = { | |
"20USD" = "s-2vcpu-4gb" | |
"15USD" = "s-2vcpu-2gb" | |
"40USD" = "s-4vcpu-8gb" | |
"80USD" = "s-6vcpu-16gb" | |
"960USD" = "s-32vcpu-192gb" | |
} | |
} | |
variable "TF_VAR_tag" { | |
description = "Nethermind version on which smoke tests will be running" | |
} | |
variable "TF_VAR_chain" { | |
description = "Ethereum chain on which smoke tests will be running" | |
} | |
provider "digitalocean" { | |
token = "${var.do_token}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment