1. Packages
  2. Hetzner Cloud
  3. API Docs
  4. Rdns
Hetzner Cloud v1.18.1 published on Tuesday, Apr 9, 2024 by Pulumi

hcloud.Rdns

Explore with Pulumi AI

hcloud logo
Hetzner Cloud v1.18.1 published on Tuesday, Apr 9, 2024 by Pulumi

    Provides a Hetzner Cloud Reverse DNS Entry to create, modify and reset reverse dns entries for Hetzner Cloud Servers, Primary IPs, Floating IPs or Load Balancers.

    Example Usage

    For servers:

    import * as pulumi from "@pulumi/pulumi";
    import * as hcloud from "@pulumi/hcloud";
    
    const node1 = new hcloud.Server("node1", {
        image: "debian-11",
        serverType: "cx11",
    });
    const master = new hcloud.Rdns("master", {
        serverId: node1.id,
        ipAddress: node1.ipv4Address,
        dnsPtr: "example.com",
    });
    
    import pulumi
    import pulumi_hcloud as hcloud
    
    node1 = hcloud.Server("node1",
        image="debian-11",
        server_type="cx11")
    master = hcloud.Rdns("master",
        server_id=node1.id,
        ip_address=node1.ipv4_address,
        dns_ptr="example.com")
    
    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 {
    		node1, err := hcloud.NewServer(ctx, "node1", &hcloud.ServerArgs{
    			Image:      pulumi.String("debian-11"),
    			ServerType: pulumi.String("cx11"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = hcloud.NewRdns(ctx, "master", &hcloud.RdnsArgs{
    			ServerId:  node1.ID(),
    			IpAddress: node1.Ipv4Address,
    			DnsPtr:    pulumi.String("example.com"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using HCloud = Pulumi.HCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var node1 = new HCloud.Server("node1", new()
        {
            Image = "debian-11",
            ServerType = "cx11",
        });
    
        var master = new HCloud.Rdns("master", new()
        {
            ServerId = node1.Id,
            IpAddress = node1.Ipv4Address,
            DnsPtr = "example.com",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.hcloud.Server;
    import com.pulumi.hcloud.ServerArgs;
    import com.pulumi.hcloud.Rdns;
    import com.pulumi.hcloud.RdnsArgs;
    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 node1 = new Server("node1", ServerArgs.builder()        
                .image("debian-11")
                .serverType("cx11")
                .build());
    
            var master = new Rdns("master", RdnsArgs.builder()        
                .serverId(node1.id())
                .ipAddress(node1.ipv4Address())
                .dnsPtr("example.com")
                .build());
    
        }
    }
    
    resources:
      node1:
        type: hcloud:Server
        properties:
          image: debian-11
          serverType: cx11
      master:
        type: hcloud:Rdns
        properties:
          serverId: ${node1.id}
          ipAddress: ${node1.ipv4Address}
          dnsPtr: example.com
    

    For Primary IPs:

    import * as pulumi from "@pulumi/pulumi";
    import * as hcloud from "@pulumi/hcloud";
    
    const primary1PrimaryIp = new hcloud.PrimaryIp("primary1PrimaryIp", {
        datacenter: "nbg1-dc3",
        type: "ipv4",
    });
    const primary1Rdns = new hcloud.Rdns("primary1Rdns", {
        primaryIpId: primary1PrimaryIp.id,
        ipAddress: primary1PrimaryIp.ipAddress,
        dnsPtr: "example.com",
    });
    
    import pulumi
    import pulumi_hcloud as hcloud
    
    primary1_primary_ip = hcloud.PrimaryIp("primary1PrimaryIp",
        datacenter="nbg1-dc3",
        type="ipv4")
    primary1_rdns = hcloud.Rdns("primary1Rdns",
        primary_ip_id=primary1_primary_ip.id,
        ip_address=primary1_primary_ip.ip_address,
        dns_ptr="example.com")
    
    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 {
    		primary1PrimaryIp, err := hcloud.NewPrimaryIp(ctx, "primary1PrimaryIp", &hcloud.PrimaryIpArgs{
    			Datacenter: pulumi.String("nbg1-dc3"),
    			Type:       pulumi.String("ipv4"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = hcloud.NewRdns(ctx, "primary1Rdns", &hcloud.RdnsArgs{
    			PrimaryIpId: primary1PrimaryIp.ID(),
    			IpAddress:   primary1PrimaryIp.IpAddress,
    			DnsPtr:      pulumi.String("example.com"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using HCloud = Pulumi.HCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var primary1PrimaryIp = new HCloud.PrimaryIp("primary1PrimaryIp", new()
        {
            Datacenter = "nbg1-dc3",
            Type = "ipv4",
        });
    
        var primary1Rdns = new HCloud.Rdns("primary1Rdns", new()
        {
            PrimaryIpId = primary1PrimaryIp.Id,
            IpAddress = primary1PrimaryIp.IpAddress,
            DnsPtr = "example.com",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.hcloud.PrimaryIp;
    import com.pulumi.hcloud.PrimaryIpArgs;
    import com.pulumi.hcloud.Rdns;
    import com.pulumi.hcloud.RdnsArgs;
    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 primary1PrimaryIp = new PrimaryIp("primary1PrimaryIp", PrimaryIpArgs.builder()        
                .datacenter("nbg1-dc3")
                .type("ipv4")
                .build());
    
            var primary1Rdns = new Rdns("primary1Rdns", RdnsArgs.builder()        
                .primaryIpId(primary1PrimaryIp.id())
                .ipAddress(primary1PrimaryIp.ipAddress())
                .dnsPtr("example.com")
                .build());
    
        }
    }
    
    resources:
      primary1PrimaryIp:
        type: hcloud:PrimaryIp
        properties:
          datacenter: nbg1-dc3
          type: ipv4
      primary1Rdns:
        type: hcloud:Rdns
        properties:
          primaryIpId: ${primary1PrimaryIp.id}
          ipAddress: ${primary1PrimaryIp.ipAddress}
          dnsPtr: example.com
    

    For Floating IPs:

    import * as pulumi from "@pulumi/pulumi";
    import * as hcloud from "@pulumi/hcloud";
    
    const floating1 = new hcloud.FloatingIp("floating1", {
        homeLocation: "nbg1",
        type: "ipv4",
    });
    const floatingMaster = new hcloud.Rdns("floatingMaster", {
        dnsPtr: "example.com",
        floatingIpId: floating1.id,
        ipAddress: floating1.ipAddress,
    });
    
    import pulumi
    import pulumi_hcloud as hcloud
    
    floating1 = hcloud.FloatingIp("floating1",
        home_location="nbg1",
        type="ipv4")
    floating_master = hcloud.Rdns("floatingMaster",
        dns_ptr="example.com",
        floating_ip_id=floating1.id,
        ip_address=floating1.ip_address)
    
    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 {
    		floating1, err := hcloud.NewFloatingIp(ctx, "floating1", &hcloud.FloatingIpArgs{
    			HomeLocation: pulumi.String("nbg1"),
    			Type:         pulumi.String("ipv4"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = hcloud.NewRdns(ctx, "floatingMaster", &hcloud.RdnsArgs{
    			DnsPtr:       pulumi.String("example.com"),
    			FloatingIpId: floating1.ID(),
    			IpAddress:    floating1.IpAddress,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using HCloud = Pulumi.HCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var floating1 = new HCloud.FloatingIp("floating1", new()
        {
            HomeLocation = "nbg1",
            Type = "ipv4",
        });
    
        var floatingMaster = new HCloud.Rdns("floatingMaster", new()
        {
            DnsPtr = "example.com",
            FloatingIpId = floating1.Id,
            IpAddress = floating1.IpAddress,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.hcloud.FloatingIp;
    import com.pulumi.hcloud.FloatingIpArgs;
    import com.pulumi.hcloud.Rdns;
    import com.pulumi.hcloud.RdnsArgs;
    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 floating1 = new FloatingIp("floating1", FloatingIpArgs.builder()        
                .homeLocation("nbg1")
                .type("ipv4")
                .build());
    
            var floatingMaster = new Rdns("floatingMaster", RdnsArgs.builder()        
                .dnsPtr("example.com")
                .floatingIpId(floating1.id())
                .ipAddress(floating1.ipAddress())
                .build());
    
        }
    }
    
    resources:
      floating1:
        type: hcloud:FloatingIp
        properties:
          homeLocation: nbg1
          type: ipv4
      floatingMaster:
        type: hcloud:Rdns
        properties:
          dnsPtr: example.com
          floatingIpId: ${floating1.id}
          ipAddress: ${floating1.ipAddress}
    

    For Load Balancers:

    import * as pulumi from "@pulumi/pulumi";
    import * as hcloud from "@pulumi/hcloud";
    
    const loadBalancer1 = new hcloud.LoadBalancer("loadBalancer1", {
        loadBalancerType: "lb11",
        location: "fsn1",
    });
    const loadBalancerMaster = new hcloud.Rdns("loadBalancerMaster", {
        dnsPtr: "example.com",
        ipAddress: loadBalancer1.ipv4,
        loadBalancerId: loadBalancer1.id,
    });
    
    import pulumi
    import pulumi_hcloud as hcloud
    
    load_balancer1 = hcloud.LoadBalancer("loadBalancer1",
        load_balancer_type="lb11",
        location="fsn1")
    load_balancer_master = hcloud.Rdns("loadBalancerMaster",
        dns_ptr="example.com",
        ip_address=load_balancer1.ipv4,
        load_balancer_id=load_balancer1.id)
    
    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 {
    		loadBalancer1, err := hcloud.NewLoadBalancer(ctx, "loadBalancer1", &hcloud.LoadBalancerArgs{
    			LoadBalancerType: pulumi.String("lb11"),
    			Location:         pulumi.String("fsn1"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = hcloud.NewRdns(ctx, "loadBalancerMaster", &hcloud.RdnsArgs{
    			DnsPtr:         pulumi.String("example.com"),
    			IpAddress:      loadBalancer1.Ipv4,
    			LoadBalancerId: loadBalancer1.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using HCloud = Pulumi.HCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var loadBalancer1 = new HCloud.LoadBalancer("loadBalancer1", new()
        {
            LoadBalancerType = "lb11",
            Location = "fsn1",
        });
    
        var loadBalancerMaster = new HCloud.Rdns("loadBalancerMaster", new()
        {
            DnsPtr = "example.com",
            IpAddress = loadBalancer1.Ipv4,
            LoadBalancerId = loadBalancer1.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.hcloud.LoadBalancer;
    import com.pulumi.hcloud.LoadBalancerArgs;
    import com.pulumi.hcloud.Rdns;
    import com.pulumi.hcloud.RdnsArgs;
    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 loadBalancer1 = new LoadBalancer("loadBalancer1", LoadBalancerArgs.builder()        
                .loadBalancerType("lb11")
                .location("fsn1")
                .build());
    
            var loadBalancerMaster = new Rdns("loadBalancerMaster", RdnsArgs.builder()        
                .dnsPtr("example.com")
                .ipAddress(loadBalancer1.ipv4())
                .loadBalancerId(loadBalancer1.id())
                .build());
    
        }
    }
    
    resources:
      loadBalancer1:
        type: hcloud:LoadBalancer
        properties:
          loadBalancerType: lb11
          location: fsn1
      loadBalancerMaster:
        type: hcloud:Rdns
        properties:
          dnsPtr: example.com
          ipAddress: ${loadBalancer1.ipv4}
          loadBalancerId: ${loadBalancer1.id}
    

    Create Rdns Resource

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

    Constructor syntax

    new Rdns(name: string, args: RdnsArgs, opts?: CustomResourceOptions);
    @overload
    def Rdns(resource_name: str,
             args: RdnsArgs,
             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Rdns(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             dns_ptr: Optional[str] = None,
             ip_address: Optional[str] = None,
             floating_ip_id: Optional[int] = None,
             load_balancer_id: Optional[int] = None,
             primary_ip_id: Optional[int] = None,
             server_id: Optional[int] = None)
    func NewRdns(ctx *Context, name string, args RdnsArgs, opts ...ResourceOption) (*Rdns, error)
    public Rdns(string name, RdnsArgs args, CustomResourceOptions? opts = null)
    public Rdns(String name, RdnsArgs args)
    public Rdns(String name, RdnsArgs args, CustomResourceOptions options)
    
    type: hcloud:Rdns
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

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

    Example

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

    var rdnsResource = new HCloud.Rdns("rdnsResource", new()
    {
        DnsPtr = "string",
        IpAddress = "string",
        FloatingIpId = 0,
        LoadBalancerId = 0,
        PrimaryIpId = 0,
        ServerId = 0,
    });
    
    example, err := hcloud.NewRdns(ctx, "rdnsResource", &hcloud.RdnsArgs{
    	DnsPtr:         pulumi.String("string"),
    	IpAddress:      pulumi.String("string"),
    	FloatingIpId:   pulumi.Int(0),
    	LoadBalancerId: pulumi.Int(0),
    	PrimaryIpId:    pulumi.Int(0),
    	ServerId:       pulumi.Int(0),
    })
    
    var rdnsResource = new Rdns("rdnsResource", RdnsArgs.builder()        
        .dnsPtr("string")
        .ipAddress("string")
        .floatingIpId(0)
        .loadBalancerId(0)
        .primaryIpId(0)
        .serverId(0)
        .build());
    
    rdns_resource = hcloud.Rdns("rdnsResource",
        dns_ptr="string",
        ip_address="string",
        floating_ip_id=0,
        load_balancer_id=0,
        primary_ip_id=0,
        server_id=0)
    
    const rdnsResource = new hcloud.Rdns("rdnsResource", {
        dnsPtr: "string",
        ipAddress: "string",
        floatingIpId: 0,
        loadBalancerId: 0,
        primaryIpId: 0,
        serverId: 0,
    });
    
    type: hcloud:Rdns
    properties:
        dnsPtr: string
        floatingIpId: 0
        ipAddress: string
        loadBalancerId: 0
        primaryIpId: 0
        serverId: 0
    

    Rdns Resource Properties

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

    Inputs

    The Rdns resource accepts the following input properties:

    DnsPtr string
    The DNS address the ip_address should resolve to.
    IpAddress string
    The IP address that should point to dns_ptr.
    FloatingIpId int
    The Floating IP the ip_address belongs to.
    LoadBalancerId int
    The Load Balancer the ip_address belongs to.
    PrimaryIpId int
    The Primary IP the ip_address belongs to.
    ServerId int
    The server the ip_address belongs to.
    DnsPtr string
    The DNS address the ip_address should resolve to.
    IpAddress string
    The IP address that should point to dns_ptr.
    FloatingIpId int
    The Floating IP the ip_address belongs to.
    LoadBalancerId int
    The Load Balancer the ip_address belongs to.
    PrimaryIpId int
    The Primary IP the ip_address belongs to.
    ServerId int
    The server the ip_address belongs to.
    dnsPtr String
    The DNS address the ip_address should resolve to.
    ipAddress String
    The IP address that should point to dns_ptr.
    floatingIpId Integer
    The Floating IP the ip_address belongs to.
    loadBalancerId Integer
    The Load Balancer the ip_address belongs to.
    primaryIpId Integer
    The Primary IP the ip_address belongs to.
    serverId Integer
    The server the ip_address belongs to.
    dnsPtr string
    The DNS address the ip_address should resolve to.
    ipAddress string
    The IP address that should point to dns_ptr.
    floatingIpId number
    The Floating IP the ip_address belongs to.
    loadBalancerId number
    The Load Balancer the ip_address belongs to.
    primaryIpId number
    The Primary IP the ip_address belongs to.
    serverId number
    The server the ip_address belongs to.
    dns_ptr str
    The DNS address the ip_address should resolve to.
    ip_address str
    The IP address that should point to dns_ptr.
    floating_ip_id int
    The Floating IP the ip_address belongs to.
    load_balancer_id int
    The Load Balancer the ip_address belongs to.
    primary_ip_id int
    The Primary IP the ip_address belongs to.
    server_id int
    The server the ip_address belongs to.
    dnsPtr String
    The DNS address the ip_address should resolve to.
    ipAddress String
    The IP address that should point to dns_ptr.
    floatingIpId Number
    The Floating IP the ip_address belongs to.
    loadBalancerId Number
    The Load Balancer the ip_address belongs to.
    primaryIpId Number
    The Primary IP the ip_address belongs to.
    serverId Number
    The server the ip_address belongs to.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Rdns 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 Rdns Resource

    Get an existing Rdns 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?: RdnsState, opts?: CustomResourceOptions): Rdns
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            dns_ptr: Optional[str] = None,
            floating_ip_id: Optional[int] = None,
            ip_address: Optional[str] = None,
            load_balancer_id: Optional[int] = None,
            primary_ip_id: Optional[int] = None,
            server_id: Optional[int] = None) -> Rdns
    func GetRdns(ctx *Context, name string, id IDInput, state *RdnsState, opts ...ResourceOption) (*Rdns, error)
    public static Rdns Get(string name, Input<string> id, RdnsState? state, CustomResourceOptions? opts = null)
    public static Rdns get(String name, Output<String> id, RdnsState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    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:
    DnsPtr string
    The DNS address the ip_address should resolve to.
    FloatingIpId int
    The Floating IP the ip_address belongs to.
    IpAddress string
    The IP address that should point to dns_ptr.
    LoadBalancerId int
    The Load Balancer the ip_address belongs to.
    PrimaryIpId int
    The Primary IP the ip_address belongs to.
    ServerId int
    The server the ip_address belongs to.
    DnsPtr string
    The DNS address the ip_address should resolve to.
    FloatingIpId int
    The Floating IP the ip_address belongs to.
    IpAddress string
    The IP address that should point to dns_ptr.
    LoadBalancerId int
    The Load Balancer the ip_address belongs to.
    PrimaryIpId int
    The Primary IP the ip_address belongs to.
    ServerId int
    The server the ip_address belongs to.
    dnsPtr String
    The DNS address the ip_address should resolve to.
    floatingIpId Integer
    The Floating IP the ip_address belongs to.
    ipAddress String
    The IP address that should point to dns_ptr.
    loadBalancerId Integer
    The Load Balancer the ip_address belongs to.
    primaryIpId Integer
    The Primary IP the ip_address belongs to.
    serverId Integer
    The server the ip_address belongs to.
    dnsPtr string
    The DNS address the ip_address should resolve to.
    floatingIpId number
    The Floating IP the ip_address belongs to.
    ipAddress string
    The IP address that should point to dns_ptr.
    loadBalancerId number
    The Load Balancer the ip_address belongs to.
    primaryIpId number
    The Primary IP the ip_address belongs to.
    serverId number
    The server the ip_address belongs to.
    dns_ptr str
    The DNS address the ip_address should resolve to.
    floating_ip_id int
    The Floating IP the ip_address belongs to.
    ip_address str
    The IP address that should point to dns_ptr.
    load_balancer_id int
    The Load Balancer the ip_address belongs to.
    primary_ip_id int
    The Primary IP the ip_address belongs to.
    server_id int
    The server the ip_address belongs to.
    dnsPtr String
    The DNS address the ip_address should resolve to.
    floatingIpId Number
    The Floating IP the ip_address belongs to.
    ipAddress String
    The IP address that should point to dns_ptr.
    loadBalancerId Number
    The Load Balancer the ip_address belongs to.
    primaryIpId Number
    The Primary IP the ip_address belongs to.
    serverId Number
    The server the ip_address belongs to.

    Import

    Reverse DNS entries can be imported using a compound ID with the following format:

    <prefix (s for server/ f for floating ip / l for load balancer)>-<server, floating ip or load balancer ID>-<IP address>

    import reverse dns entry on server with id 123, ip 192.168.100.1

    $ pulumi import hcloud:index/rdns:Rdns myrdns s-123-192.168.100.1
    

    import reverse dns entry on primary ip with id 123, ip 2001:db8::1

    $ pulumi import hcloud:index/rdns:Rdns myrdns p-123-2001:db8::1
    

    import reverse dns entry on floating ip with id 123, ip 2001:db8::1

    $ pulumi import hcloud:index/rdns:Rdns myrdns f-123-2001:db8::1
    

    import reverse dns entry on load balancer with id 123, ip 2001:db8::1

    $ pulumi import hcloud:index/rdns:Rdns myrdns l-123-2001:db8::1
    

    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.
    hcloud logo
    Hetzner Cloud v1.18.1 published on Tuesday, Apr 9, 2024 by Pulumi