Skip to content

This is a Terraform provider for BinaryLane, for reliable & affordable Australian VPS hosting

License

Notifications You must be signed in to change notification settings

oscarhermoso/terraform-provider-binarylane

Repository files navigation

terraform-provider-binarylane

See the examples in the examples directory.

resource "binarylane_server" "example" {
  region = "per"
  image  = "ubuntu-24.04"
  size   = "std-min"
}

Progress

Planned features:

  • Servers
    • Firewall Rules
    • Cloud Init
    • Updating server properties
    • Backups
    • Software
    • IPV6
    • Alerts
  • SSH Keys
  • Virtual Private Cloud
  • Load Balancers
  • Images
  • DNS
  • Docs
    • Generated docs
    • Review & fill out remaining descriptions
    • Include examples in docs
  • Examples
    • Basic
    • Cloud Init
    • NixOS
    • Virtual Private Cloud
    • Kubernetes

Parameters

Images:

curl -X GET "https://api.binarylane.com.au/v2/images?type=distribution&&page=1&per_page=200" \
  -H "Authorization: Bearer **********" > tmp/images.json

jq '[ .images[] | .slug ] | sort' tmp/images.json
[
  "alma-8",
  "alma-9",
  "byo-os",
  "byo-os-virtio-disabled",
  "cpanel-plus-whm",
  "debian-11",
  "debian-12",
  "rocky-8",
  "rocky-9",
  "ubuntu-20.04-neon-desktop",
  "ubuntu-20.04.6",
  "ubuntu-22.04",
  "ubuntu-22.04-desktop",
  "ubuntu-24.04",
  "windows-2012-r2",
  "windows-2016",
  "windows-2016-sql-2016-web",
  "windows-2019",
  "windows-2019-sql-2017-std",
  "windows-2019-sql-2017-web",
  "windows-2022",
  "windows-2022-sql-2019-std",
  "windows-2022-sql-2019-web"
]

Regions:

curl -X GET "https://api.binarylane.com.au/v2/regions" \
  -H "Authorization: Bearer **********"" > tmp/regions.json

jq '[ .regions[] | .slug ] | sort' tmp/regions.json
[
  "bne",
  "mel",
  "per",
  "sin",
  "syd"
]

Sizes

VM size
curl -X GET "https://api.binarylane.com.au/v2/sizes" \
  -H "Authorization: Bearer **********"" > tmp/sizes.json

jq '[ .sizes[] | .slug ] | sort' tmp/sizes.json
[
  "cpu-2thr",
  "cpu-4thr",
  "cpu-6thr",
  "cpu-8thr",
  "ded-3900x-1600gb",
  "ded-e2136-400gb",
  "ded-e2136-800gb",
  "ded-e2288g-400gb",
  "ded-e2288g-800gb",
  "hdd-1000gb",
  "hdd-2000gb",
  "hdd-500gb",
  "std-1vcpu",
  "std-2vcpu",
  "std-4vcpu",
  "std-6vcpu",
  "std-8vcpu",
  "std-min"
]