open-consul/terraform/digitalocean/variables.tf

27 lines
403 B
Terraform
Raw Normal View History

2016-09-05 23:22:56 +00:00
variable "do_token" {}
2016-11-18 00:27:48 +00:00
variable "key_path" {}
2016-09-05 23:22:56 +00:00
2016-11-18 00:27:48 +00:00
variable "ssh_key_ID" {}
2016-09-05 23:22:56 +00:00
2016-11-18 00:27:48 +00:00
variable "region" {}
2016-09-05 23:22:56 +00:00
2016-11-18 00:27:48 +00:00
variable "num_instances" {}
2016-09-05 23:22:56 +00:00
2016-11-18 00:27:48 +00:00
# Default OS
2016-09-05 23:22:56 +00:00
variable "ubuntu" {
2016-11-18 00:27:48 +00:00
description = "Default LTS"
default = "ubuntu-14-04-x64"
2016-09-05 23:22:56 +00:00
}
variable "centos" {
2016-11-18 00:27:48 +00:00
description = "Default Centos"
default = "centos-72-x64"
2016-09-05 23:22:56 +00:00
}
variable "coreos" {
2016-11-18 00:27:48 +00:00
description = "Defaut Coreos"
default = "coreos-899.17.0"
2016-09-05 23:22:56 +00:00
}