oscarhermoso / terraform-provider-binarylane

This is a Terraform provider for Binary Lane, for reliable & affordable Australian VPS hosting
https://registry.terraform.io/providers/oscarhermoso/binarylane/latest
MIT License
9 stars 0 forks source link
binary-lane binarylane opentofu terraform

terraform-provider-binarylane

See the documentation on the Terraform Registry, or see examples in the examples directory.

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

Progress

Planned features:

Server parameters

Regions

curl for regions ```sh curl -X GET "https://api.binarylane.com.au/v2/regions" \ -H "Authorization: Bearer $BINARYLANE_API_TOKEN" > tmp/regions.json jq '[ .regions[] | .slug ] | sort' tmp/regions.json ```
[
  "bne",
  "mel",
  "per",
  "sin",
  "syd"
]

Images

curl for images ```sh curl -X GET "https://api.binarylane.com.au/v2/images?type=distribution&&page=1&per_page=200" \ -H "Authorization: Bearer $BINARYLANE_API_TOKEN" > 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"
]

Sizes

curl for sizes ```sh curl -X GET "https://api.binarylane.com.au/v2/sizes" \ -H "Authorization: Bearer $BINARYLANE_API_TOKEN" > 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"
]