blob: 3c019ca35a473d66a041bf794e8ec711c41fc44a (
plain) (
tree)
|
|
variable "region" {
type = string
# Get the full list:
# curl -H "Content-Type: application/json" -H "Authorization: Bearer $DIGITALOCEAN_TOKEN" "https://api.digitalocean.com/v2/regions" | jq .
}
variable "project_id" {
type = string
}
variable "name" {
type = string
}
variable "size" {
type = number
default = 10
}
|