You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/terraform/digitalocean/variables.tf

27 lines
403 B

variable "do_token" {}
variable "key_path" {}
variable "ssh_key_ID" {}
variable "region" {}
variable "num_instances" {}
# Default OS
variable "ubuntu" {
description = "Default LTS"
default = "ubuntu-14-04-x64"
}
variable "centos" {
description = "Default Centos"
default = "centos-72-x64"
}
variable "coreos" {
description = "Defaut Coreos"
default = "coreos-899.17.0"
}