1. Packages
  2. Hcloud Provider
  3. API Docs
  4. Network
Hetzner Cloud v1.22.0 published on Wednesday, Feb 26, 2025 by Pulumi

hcloud.Network

Explore with Pulumi AI

Provides a Hetzner Cloud Network to represent a Network in the Hetzner Cloud.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as hcloud from "@pulumi/hcloud";

const privNet = new hcloud.Network("privNet", {
    name: "my-net",
    ipRange: "10.0.1.0/24",
});
Copy
import pulumi
import pulumi_hcloud as hcloud

priv_net = hcloud.Network("privNet",
    name="my-net",
    ip_range="10.0.1.0/24")
Copy
package main

import (
	"github.com/pulumi/pulumi-hcloud/sdk/go/hcloud"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := hcloud.NewNetwork(ctx, "privNet", &hcloud.NetworkArgs{
			Name:    pulumi.String("my-net"),
			IpRange: pulumi.String("10.0.1.0/24"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using HCloud = Pulumi.HCloud;

return await Deployment.RunAsync(() => 
{
    var privNet = new HCloud.Network("privNet", new()
    {
        Name = "my-net",
        IpRange = "10.0.1.0/24",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.hcloud.Network;
import com.pulumi.hcloud.NetworkArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var privNet = new Network("privNet", NetworkArgs.builder()
            .name("my-net")
            .ipRange("10.0.1.0/24")
            .build());

    }
}
Copy
resources:
  privNet:
    type: hcloud:Network
    properties:
      name: my-net
      ipRange: 10.0.1.0/24
Copy

Create Network Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Network(name: string, args: NetworkArgs, opts?: CustomResourceOptions);
@overload
def Network(resource_name: str,
            args: NetworkArgs,
            opts: Optional[ResourceOptions] = None)

@overload
def Network(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            ip_range: Optional[str] = None,
            delete_protection: Optional[bool] = None,
            expose_routes_to_vswitch: Optional[bool] = None,
            labels: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None)
func NewNetwork(ctx *Context, name string, args NetworkArgs, opts ...ResourceOption) (*Network, error)
public Network(string name, NetworkArgs args, CustomResourceOptions? opts = null)
public Network(String name, NetworkArgs args)
public Network(String name, NetworkArgs args, CustomResourceOptions options)
type: hcloud:Network
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. NetworkArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. NetworkArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. NetworkArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. NetworkArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. NetworkArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var networkResource = new HCloud.Network("networkResource", new()
{
    IpRange = "string",
    DeleteProtection = false,
    ExposeRoutesToVswitch = false,
    Labels = 
    {
        { "string", "string" },
    },
    Name = "string",
});
Copy
example, err := hcloud.NewNetwork(ctx, "networkResource", &hcloud.NetworkArgs{
	IpRange:               pulumi.String("string"),
	DeleteProtection:      pulumi.Bool(false),
	ExposeRoutesToVswitch: pulumi.Bool(false),
	Labels: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Name: pulumi.String("string"),
})
Copy
var networkResource = new Network("networkResource", NetworkArgs.builder()
    .ipRange("string")
    .deleteProtection(false)
    .exposeRoutesToVswitch(false)
    .labels(Map.of("string", "string"))
    .name("string")
    .build());
Copy
network_resource = hcloud.Network("networkResource",
    ip_range="string",
    delete_protection=False,
    expose_routes_to_vswitch=False,
    labels={
        "string": "string",
    },
    name="string")
Copy
const networkResource = new hcloud.Network("networkResource", {
    ipRange: "string",
    deleteProtection: false,
    exposeRoutesToVswitch: false,
    labels: {
        string: "string",
    },
    name: "string",
});
Copy
type: hcloud:Network
properties:
    deleteProtection: false
    exposeRoutesToVswitch: false
    ipRange: string
    labels:
        string: string
    name: string
Copy

Network Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Network resource accepts the following input properties:

IpRange
This property is required.
Changes to this property will trigger replacement.
string
IP Range of the whole Network which must span all included subnets and route destinations. Must be one of the private ipv4 ranges of RFC1918.
DeleteProtection bool
Enable or disable delete protection. See "Delete Protection" in the Provider Docs for details.
ExposeRoutesToVswitch bool
Enable or disable exposing the routes to the vSwitch connection. The exposing only takes effect if a vSwitch connection is active.
Labels Dictionary<string, string>
User-defined labels (key-value pairs) should be created with.
Name string
Name of the Network to create (must be unique per project).
IpRange
This property is required.
Changes to this property will trigger replacement.
string
IP Range of the whole Network which must span all included subnets and route destinations. Must be one of the private ipv4 ranges of RFC1918.
DeleteProtection bool
Enable or disable delete protection. See "Delete Protection" in the Provider Docs for details.
ExposeRoutesToVswitch bool
Enable or disable exposing the routes to the vSwitch connection. The exposing only takes effect if a vSwitch connection is active.
Labels map[string]string
User-defined labels (key-value pairs) should be created with.
Name string
Name of the Network to create (must be unique per project).
ipRange
This property is required.
Changes to this property will trigger replacement.
String
IP Range of the whole Network which must span all included subnets and route destinations. Must be one of the private ipv4 ranges of RFC1918.
deleteProtection Boolean
Enable or disable delete protection. See "Delete Protection" in the Provider Docs for details.
exposeRoutesToVswitch Boolean
Enable or disable exposing the routes to the vSwitch connection. The exposing only takes effect if a vSwitch connection is active.
labels Map<String,String>
User-defined labels (key-value pairs) should be created with.
name String
Name of the Network to create (must be unique per project).
ipRange
This property is required.
Changes to this property will trigger replacement.
string
IP Range of the whole Network which must span all included subnets and route destinations. Must be one of the private ipv4 ranges of RFC1918.
deleteProtection boolean
Enable or disable delete protection. See "Delete Protection" in the Provider Docs for details.
exposeRoutesToVswitch boolean
Enable or disable exposing the routes to the vSwitch connection. The exposing only takes effect if a vSwitch connection is active.
labels {[key: string]: string}
User-defined labels (key-value pairs) should be created with.
name string
Name of the Network to create (must be unique per project).
ip_range
This property is required.
Changes to this property will trigger replacement.
str
IP Range of the whole Network which must span all included subnets and route destinations. Must be one of the private ipv4 ranges of RFC1918.
delete_protection bool
Enable or disable delete protection. See "Delete Protection" in the Provider Docs for details.
expose_routes_to_vswitch bool
Enable or disable exposing the routes to the vSwitch connection. The exposing only takes effect if a vSwitch connection is active.
labels Mapping[str, str]
User-defined labels (key-value pairs) should be created with.
name str
Name of the Network to create (must be unique per project).
ipRange
This property is required.
Changes to this property will trigger replacement.
String
IP Range of the whole Network which must span all included subnets and route destinations. Must be one of the private ipv4 ranges of RFC1918.
deleteProtection Boolean
Enable or disable delete protection. See "Delete Protection" in the Provider Docs for details.
exposeRoutesToVswitch Boolean
Enable or disable exposing the routes to the vSwitch connection. The exposing only takes effect if a vSwitch connection is active.
labels Map<String>
User-defined labels (key-value pairs) should be created with.
name String
Name of the Network to create (must be unique per project).

Outputs

All input properties are implicitly available as output properties. Additionally, the Network resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing Network Resource

Get an existing Network resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: NetworkState, opts?: CustomResourceOptions): Network
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        delete_protection: Optional[bool] = None,
        expose_routes_to_vswitch: Optional[bool] = None,
        ip_range: Optional[str] = None,
        labels: Optional[Mapping[str, str]] = None,
        name: Optional[str] = None) -> Network
func GetNetwork(ctx *Context, name string, id IDInput, state *NetworkState, opts ...ResourceOption) (*Network, error)
public static Network Get(string name, Input<string> id, NetworkState? state, CustomResourceOptions? opts = null)
public static Network get(String name, Output<String> id, NetworkState state, CustomResourceOptions options)
resources:  _:    type: hcloud:Network    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
DeleteProtection bool
Enable or disable delete protection. See "Delete Protection" in the Provider Docs for details.
ExposeRoutesToVswitch bool
Enable or disable exposing the routes to the vSwitch connection. The exposing only takes effect if a vSwitch connection is active.
IpRange Changes to this property will trigger replacement. string
IP Range of the whole Network which must span all included subnets and route destinations. Must be one of the private ipv4 ranges of RFC1918.
Labels Dictionary<string, string>
User-defined labels (key-value pairs) should be created with.
Name string
Name of the Network to create (must be unique per project).
DeleteProtection bool
Enable or disable delete protection. See "Delete Protection" in the Provider Docs for details.
ExposeRoutesToVswitch bool
Enable or disable exposing the routes to the vSwitch connection. The exposing only takes effect if a vSwitch connection is active.
IpRange Changes to this property will trigger replacement. string
IP Range of the whole Network which must span all included subnets and route destinations. Must be one of the private ipv4 ranges of RFC1918.
Labels map[string]string
User-defined labels (key-value pairs) should be created with.
Name string
Name of the Network to create (must be unique per project).
deleteProtection Boolean
Enable or disable delete protection. See "Delete Protection" in the Provider Docs for details.
exposeRoutesToVswitch Boolean
Enable or disable exposing the routes to the vSwitch connection. The exposing only takes effect if a vSwitch connection is active.
ipRange Changes to this property will trigger replacement. String
IP Range of the whole Network which must span all included subnets and route destinations. Must be one of the private ipv4 ranges of RFC1918.
labels Map<String,String>
User-defined labels (key-value pairs) should be created with.
name String
Name of the Network to create (must be unique per project).
deleteProtection boolean
Enable or disable delete protection. See "Delete Protection" in the Provider Docs for details.
exposeRoutesToVswitch boolean
Enable or disable exposing the routes to the vSwitch connection. The exposing only takes effect if a vSwitch connection is active.
ipRange Changes to this property will trigger replacement. string
IP Range of the whole Network which must span all included subnets and route destinations. Must be one of the private ipv4 ranges of RFC1918.
labels {[key: string]: string}
User-defined labels (key-value pairs) should be created with.
name string
Name of the Network to create (must be unique per project).
delete_protection bool
Enable or disable delete protection. See "Delete Protection" in the Provider Docs for details.
expose_routes_to_vswitch bool
Enable or disable exposing the routes to the vSwitch connection. The exposing only takes effect if a vSwitch connection is active.
ip_range Changes to this property will trigger replacement. str
IP Range of the whole Network which must span all included subnets and route destinations. Must be one of the private ipv4 ranges of RFC1918.
labels Mapping[str, str]
User-defined labels (key-value pairs) should be created with.
name str
Name of the Network to create (must be unique per project).
deleteProtection Boolean
Enable or disable delete protection. See "Delete Protection" in the Provider Docs for details.
exposeRoutesToVswitch Boolean
Enable or disable exposing the routes to the vSwitch connection. The exposing only takes effect if a vSwitch connection is active.
ipRange Changes to this property will trigger replacement. String
IP Range of the whole Network which must span all included subnets and route destinations. Must be one of the private ipv4 ranges of RFC1918.
labels Map<String>
User-defined labels (key-value pairs) should be created with.
name String
Name of the Network to create (must be unique per project).

Import

Networks can be imported using its id:

$ pulumi import hcloud:index/network:Network example "$NETWORK_ID"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Hetzner Cloud pulumi/pulumi-hcloud
License
Apache-2.0
Notes
This Pulumi package is based on the hcloud Terraform Provider.