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

    Interface ServerPublicNet

    Public Network options.

    interface ServerPublicNet {
        enableIpv4?: boolean;
        enableIpv6?: boolean;
        ipv4?: number | null;
        ipv6?: number | null;
    }
    Index

    Properties

    enableIpv4?: boolean

    Attach an IPv4 on the public NIC. If false, no IPv4 address will be attached.

    enableIpv6?: boolean

    Attach an IPv6 on the public NIC. If false, no IPv6 address will be attached.

    ipv4?: number | null

    ID of the ipv4 Primary IP to use. If omitted and enable_ipv4 is true, a new ipv4 Primary IP will automatically be created.

    ipv6?: number | null

    ID of the ipv6 Primary IP to use. If omitted and enable_ipv6 is true, a new ipv6 Primary IP will automatically be created.