@cdk-x/hetzner
    Preparing search index...

    Interface HetznerRoute

    Props for HtzRoute.

    Manages a route added to an existing Hetzner Cloud Network via the add_route action.

    interface HetznerRoute {
        destination: string;
        gateway: string;
        networkId: number | IResolvable;
    }
    Index

    Properties

    destination: string

    Destination network or host of the route in CIDR notation (e.g. '10.100.1.0/24').

    gateway: string

    Gateway IP address for the route (e.g. '10.0.1.1'). Cannot be the first IP of the Network's ip_range or 172.31.1.1.

    networkId: number | IResolvable

    ID of the Network to add the route to.