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

    Interface FirewallRule

    A single firewall rule.

    interface FirewallRule {
        description?: string | null;
        destinationIps?: (string | IResolvable)[];
        direction: FirewallRuleDirection;
        port?: string;
        protocol: FirewallRuleProtocol;
        sourceIps?: (string | IResolvable)[];
    }
    Index

    Properties

    description?: string | null

    Description of the rule.

    destinationIps?: (string | IResolvable)[]

    List of permitted IPv4/IPv6 addresses for outgoing traffic.

    Traffic direction in which the rule should be applied to.

    port?: string

    Port or port range to apply the rule for.

    Network protocol to apply the rule for.

    sourceIps?: (string | IResolvable)[]

    List of permitted IPv4/IPv6 addresses for incoming traffic.