infrastructure / terraform / variables.tf
Commits | bovarysme Add instructions to upgrade OpenBSD in README.md Committed on Oct 18, 2020
494 B | Download
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
variable "hostname" { description = "Server hostname" } variable "ssh_key" { description = "SSH key" type = "map" } variable "vultr_api_key" { description = "Vultr API key" } variable "vultr_region_amsterdam" { description = "Vultr Amsterdam region" default = "7" } variable "vultr_plan_1gb" { description = "1024 MB RAM, 25 GB SSD, 1.00 TB BW" default = "201" } variable "vultr_os_openbsd_67_x64" { description = "OpenBSD 6.7 x64" default = "394" } |