NetworkRoute

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

Example Usage

using Pulumi;
using HCloud = Pulumi.HCloud;

class MyStack : Stack
{
    public MyStack()
    {
        var mynet = new HCloud.Network("mynet", new HCloud.NetworkArgs
        {
            IpRange = "10.0.0.0/8",
        });
        var privNet = new HCloud.NetworkRoute("privNet", new HCloud.NetworkRouteArgs
        {
            Destination = "10.100.1.0/24",
            Gateway = "10.0.1.1",
            NetworkId = mynet.Id,
        });
    }

}
package main

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

func main() {
    pulumi.Run(func(ctx *pulumi.Context) error {
        mynet, err := hcloud.NewNetwork(ctx, "mynet", &hcloud.NetworkArgs{
            IpRange: pulumi.String("10.0.0.0/8"),
        })
        if err != nil {
            return err
        }
        _, err = hcloud.NewNetworkRoute(ctx, "privNet", &hcloud.NetworkRouteArgs{
            Destination: pulumi.String("10.100.1.0/24"),
            Gateway:     pulumi.String("10.0.1.1"),
            NetworkId:   mynet.ID(),
        })
        if err != nil {
            return err
        }
        return nil
    })
}
import pulumi
import pulumi_hcloud as hcloud

mynet = hcloud.Network("mynet", ip_range="10.0.0.0/8")
priv_net = hcloud.NetworkRoute("privNet",
    destination="10.100.1.0/24",
    gateway="10.0.1.1",
    network_id=mynet.id)
import * as pulumi from "@pulumi/pulumi";
import * as hcloud from "@pulumi/hcloud";

const mynet = new hcloud.Network("mynet", {
    ipRange: "10.0.0.0/8",
});
const privNet = new hcloud.NetworkRoute("privNet", {
    destination: "10.100.1.0/24",
    gateway: "10.0.1.1",
    networkId: mynet.id.apply(id => Number.parseFloat(id)),
});

Create a NetworkRoute Resource

def NetworkRoute(resource_name, opts=None, destination=None, gateway=None, network_id=None, __props__=None);
func NewNetworkRoute(ctx *Context, name string, args NetworkRouteArgs, opts ...ResourceOption) (*NetworkRoute, error)
name string
The unique name of the resource.
args NetworkRouteArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args NetworkRouteArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args NetworkRouteArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

NetworkRoute Resource Properties

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

Inputs

The NetworkRoute resource accepts the following input properties:

Destination string
Gateway string
NetworkId int
Destination string
Gateway string
NetworkId int
destination string
gateway string
networkId number
destination str
gateway str
network_id float

Outputs

All input properties are implicitly available as output properties. Additionally, the NetworkRoute 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 str
The provider-assigned unique ID for this managed resource.

Look up an Existing NetworkRoute Resource

Get an existing NetworkRoute 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?: NetworkRouteState, opts?: CustomResourceOptions): NetworkRoute
static get(resource_name, id, opts=None, destination=None, gateway=None, network_id=None, __props__=None);
func GetNetworkRoute(ctx *Context, name string, id IDInput, state *NetworkRouteState, opts ...ResourceOption) (*NetworkRoute, error)
public static NetworkRoute Get(string name, Input<string> id, NetworkRouteState? state, CustomResourceOptions? opts = null)
name
The unique name of the resulting resource.
id
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
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
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
The unique name of the resulting resource.
id
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:

Destination string
Gateway string
NetworkId int
Destination string
Gateway string
NetworkId int
destination string
gateway string
networkId number
destination str
gateway str
network_id float

Package Details

Repository
https://github.com/pulumi/pulumi-hcloud
License
Apache-2.0
Notes
This Pulumi package is based on the hcloud Terraform Provider.