Skip to content

Instantly share code, notes, and snippets.

@matilote
Created August 3, 2020 11:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matilote/897bbf5ed7bf27e4f1b9dccfb0dbbb40 to your computer and use it in GitHub Desktop.
Save matilote/897bbf5ed7bf27e4f1b9dccfb0dbbb40 to your computer and use it in GitHub Desktop.
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