aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/digitalocean/data_volume/variables.tf
blob: 3c019ca35a473d66a041bf794e8ec711c41fc44a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
}