Skip to content
#

hetzner-cloud

Here are 78 public repositories matching this topic...

sebastiankr
sebastiankr commented Apr 26, 2020

Hi,
I can successfully associate servers with networks.

resource "hcloud_network" "ens10" {
  name = "ens10"
  ip_range = "10.0.0.0/16"
}
resource "hcloud_network_subnet" "ens10" {
  type = "server"
  network_zone = "eu-central"
  ip_range = "10.0.0.0/24"
  network_id = hcloud_network.ens10.id
}

resource "hcloud_server" "node-0" {
  name        = "node-0"
  server_type = "cpx

Improve this page

Add a description, image, and links to the hetzner-cloud topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the hetzner-cloud topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.