1. Packages
  2. Hcloud Provider
  3. API Docs
  4. Rdns
Hetzner Cloud v1.22.0 published on Wednesday, Feb 26, 2025 by Pulumi

hcloud.Rdns

Explore with Pulumi AI

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", {
    name: "node1",
    image: "debian-11",
    serverType: "cx22",
});
const master = new hcloud.Rdns("master", {
    serverId: node1.id,
    ipAddress: node1.ipv4Address,
    dnsPtr: "example.com",
});
Copy
import pulumi
import pulumi_hcloud as hcloud

node1 = hcloud.Server("node1",
    name="node1",
    image="debian-11",
    server_type="cx22")
master = hcloud.Rdns("master",
    server_id=node1.id,
    ip_address=node1.ipv4_address,
    dns_ptr="example.com")
Copy
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{
			Name:       pulumi.String("node1"),
			Image:      pulumi.String("debian-11"),
			ServerType: pulumi.String("cx22"),
		})
		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
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using HCloud = Pulumi.HCloud;

return await Deployment.RunAsync(() => 
{
    var node1 = new HCloud.Server("node1", new()
    {
        Name = "node1",
        Image = "debian-11",
        ServerType = "cx22",
    });

    var master = new HCloud.Rdns("master", new()
    {
        ServerId = node1.Id,
        IpAddress = node1.Ipv4Address,
        DnsPtr = "example.com",
    });

});
Copy
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()
            .name("node1")
            .image("debian-11")
            .serverType("cx22")
            .build());

        var master = new Rdns("master", RdnsArgs.builder()
            .serverId(node1.id())
            .ipAddress(node1.ipv4Address())
            .dnsPtr("example.com")
            .build());

    }
}
Copy
resources:
  node1:
    type: hcloud:Server
    properties:
      name: node1
      image: debian-11
      serverType: cx22
  master:
    type: hcloud:Rdns
    properties:
      serverId: ${node1.id}
      ipAddress: ${node1.ipv4Address}
      dnsPtr: example.com
Copy

For Primary IPs:

import * as pulumi from "@pulumi/pulumi";
import * as hcloud from "@pulumi/hcloud";

const primary1 = new hcloud.PrimaryIp("primary1", {
    datacenter: "nbg1-dc3",
    type: "ipv4",
});
const primary1Rdns = new hcloud.Rdns("primary1", {
    primaryIpId: primary1.id,
    ipAddress: primary1.ipAddress,
    dnsPtr: "example.com",
});
Copy
import pulumi
import pulumi_hcloud as hcloud

primary1 = hcloud.PrimaryIp("primary1",
    datacenter="nbg1-dc3",
    type="ipv4")
primary1_rdns = hcloud.Rdns("primary1",
    primary_ip_id=primary1.id,
    ip_address=primary1.ip_address,
    dns_ptr="example.com")
Copy
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 {
		primary1, err := hcloud.NewPrimaryIp(ctx, "primary1", &hcloud.PrimaryIpArgs{
			Datacenter: pulumi.String("nbg1-dc3"),
			Type:       pulumi.String("ipv4"),
		})
		if err != nil {
			return err
		}
		_, err = hcloud.NewRdns(ctx, "primary1", &hcloud.RdnsArgs{
			PrimaryIpId: primary1.ID(),
			IpAddress:   primary1.IpAddress,
			DnsPtr:      pulumi.String("example.com"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using HCloud = Pulumi.HCloud;

return await Deployment.RunAsync(() => 
{
    var primary1 = new HCloud.PrimaryIp("primary1", new()
    {
        Datacenter = "nbg1-dc3",
        Type = "ipv4",
    });

    var primary1Rdns = new HCloud.Rdns("primary1", new()
    {
        PrimaryIpId = primary1.Id,
        IpAddress = primary1.IpAddress,
        DnsPtr = "example.com",
    });

});
Copy
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 primary1 = new PrimaryIp("primary1", PrimaryIpArgs.builder()
            .datacenter("nbg1-dc3")
            .type("ipv4")
            .build());

        var primary1Rdns = new Rdns("primary1Rdns", RdnsArgs.builder()
            .primaryIpId(primary1.id())
            .ipAddress(primary1.ipAddress())
            .dnsPtr("example.com")
            .build());

    }
}
Copy
resources:
  primary1:
    type: hcloud:PrimaryIp
    properties:
      datacenter: nbg1-dc3
      type: ipv4
  primary1Rdns:
    type: hcloud:Rdns
    name: primary1
    properties:
      primaryIpId: ${primary1.id}
      ipAddress: ${primary1.ipAddress}
      dnsPtr: example.com
Copy

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("floating_master", {
    floatingIpId: floating1.id,
    ipAddress: floating1.ipAddress,
    dnsPtr: "example.com",
});
Copy
import pulumi
import pulumi_hcloud as hcloud

floating1 = hcloud.FloatingIp("floating1",
    home_location="nbg1",
    type="ipv4")
floating_master = hcloud.Rdns("floating_master",
    floating_ip_id=floating1.id,
    ip_address=floating1.ip_address,
    dns_ptr="example.com")
Copy
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, "floating_master", &hcloud.RdnsArgs{
			FloatingIpId: floating1.ID(),
			IpAddress:    floating1.IpAddress,
			DnsPtr:       pulumi.String("example.com"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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("floating_master", new()
    {
        FloatingIpId = floating1.Id,
        IpAddress = floating1.IpAddress,
        DnsPtr = "example.com",
    });

});
Copy
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()
            .floatingIpId(floating1.id())
            .ipAddress(floating1.ipAddress())
            .dnsPtr("example.com")
            .build());

    }
}
Copy
resources:
  floating1:
    type: hcloud:FloatingIp
    properties:
      homeLocation: nbg1
      type: ipv4
  floatingMaster:
    type: hcloud:Rdns
    name: floating_master
    properties:
      floatingIpId: ${floating1.id}
      ipAddress: ${floating1.ipAddress}
      dnsPtr: example.com
Copy

For Load Balancers:

import * as pulumi from "@pulumi/pulumi";
import * as hcloud from "@pulumi/hcloud";

const loadBalancer1 = new hcloud.LoadBalancer("load_balancer1", {
    name: "load_balancer1",
    loadBalancerType: "lb11",
    location: "fsn1",
});
const loadBalancerMaster = new hcloud.Rdns("load_balancer_master", {
    loadBalancerId: loadBalancer1.id,
    ipAddress: loadBalancer1.ipv4,
    dnsPtr: "example.com",
});
Copy
import pulumi
import pulumi_hcloud as hcloud

load_balancer1 = hcloud.LoadBalancer("load_balancer1",
    name="load_balancer1",
    load_balancer_type="lb11",
    location="fsn1")
load_balancer_master = hcloud.Rdns("load_balancer_master",
    load_balancer_id=load_balancer1.id,
    ip_address=load_balancer1.ipv4,
    dns_ptr="example.com")
Copy
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, "load_balancer1", &hcloud.LoadBalancerArgs{
			Name:             pulumi.String("load_balancer1"),
			LoadBalancerType: pulumi.String("lb11"),
			Location:         pulumi.String("fsn1"),
		})
		if err != nil {
			return err
		}
		_, err = hcloud.NewRdns(ctx, "load_balancer_master", &hcloud.RdnsArgs{
			LoadBalancerId: loadBalancer1.ID(),
			IpAddress:      loadBalancer1.Ipv4,
			DnsPtr:         pulumi.String("example.com"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using HCloud = Pulumi.HCloud;

return await Deployment.RunAsync(() => 
{
    var loadBalancer1 = new HCloud.LoadBalancer("load_balancer1", new()
    {
        Name = "load_balancer1",
        LoadBalancerType = "lb11",
        Location = "fsn1",
    });

    var loadBalancerMaster = new HCloud.Rdns("load_balancer_master", new()
    {
        LoadBalancerId = loadBalancer1.Id,
        IpAddress = loadBalancer1.Ipv4,
        DnsPtr = "example.com",
    });

});
Copy
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()
            .name("load_balancer1")
            .loadBalancerType("lb11")
            .location("fsn1")
            .build());

        var loadBalancerMaster = new Rdns("loadBalancerMaster", RdnsArgs.builder()
            .loadBalancerId(loadBalancer1.id())
            .ipAddress(loadBalancer1.ipv4())
            .dnsPtr("example.com")
            .build());

    }
}
Copy
resources:
  loadBalancer1:
    type: hcloud:LoadBalancer
    name: load_balancer1
    properties:
      name: load_balancer1
      loadBalancerType: lb11
      location: fsn1
  loadBalancerMaster:
    type: hcloud:Rdns
    name: load_balancer_master
    properties:
      loadBalancerId: ${loadBalancer1.id}
      ipAddress: ${loadBalancer1.ipv4}
      dnsPtr: example.com
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. RdnsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. RdnsArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. RdnsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. RdnsArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor 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,
});
Copy
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),
})
Copy
var rdnsResource = new Rdns("rdnsResource", RdnsArgs.builder()
    .dnsPtr("string")
    .ipAddress("string")
    .floatingIpId(0)
    .loadBalancerId(0)
    .primaryIpId(0)
    .serverId(0)
    .build());
Copy
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)
Copy
const rdnsResource = new hcloud.Rdns("rdnsResource", {
    dnsPtr: "string",
    ipAddress: "string",
    floatingIpId: 0,
    loadBalancerId: 0,
    primaryIpId: 0,
    serverId: 0,
});
Copy
type: hcloud:Rdns
properties:
    dnsPtr: string
    floatingIpId: 0
    ipAddress: string
    loadBalancerId: 0
    primaryIpId: 0
    serverId: 0
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Rdns resource accepts the following input properties:

DnsPtr This property is required. string
The DNS address the ip_address should resolve to.
IpAddress
This property is required.
Changes to this property will trigger replacement.
string
The IP address that should point to dns_ptr.
FloatingIpId Changes to this property will trigger replacement. int
The Floating IP the ip_address belongs to.
LoadBalancerId Changes to this property will trigger replacement. int
The Load Balancer the ip_address belongs to.
PrimaryIpId Changes to this property will trigger replacement. int
The Primary IP the ip_address belongs to.
ServerId Changes to this property will trigger replacement. int
The server the ip_address belongs to.
DnsPtr This property is required. string
The DNS address the ip_address should resolve to.
IpAddress
This property is required.
Changes to this property will trigger replacement.
string
The IP address that should point to dns_ptr.
FloatingIpId Changes to this property will trigger replacement. int
The Floating IP the ip_address belongs to.
LoadBalancerId Changes to this property will trigger replacement. int
The Load Balancer the ip_address belongs to.
PrimaryIpId Changes to this property will trigger replacement. int
The Primary IP the ip_address belongs to.
ServerId Changes to this property will trigger replacement. int
The server the ip_address belongs to.
dnsPtr This property is required. String
The DNS address the ip_address should resolve to.
ipAddress
This property is required.
Changes to this property will trigger replacement.
String
The IP address that should point to dns_ptr.
floatingIpId Changes to this property will trigger replacement. Integer
The Floating IP the ip_address belongs to.
loadBalancerId Changes to this property will trigger replacement. Integer
The Load Balancer the ip_address belongs to.
primaryIpId Changes to this property will trigger replacement. Integer
The Primary IP the ip_address belongs to.
serverId Changes to this property will trigger replacement. Integer
The server the ip_address belongs to.
dnsPtr This property is required. string
The DNS address the ip_address should resolve to.
ipAddress
This property is required.
Changes to this property will trigger replacement.
string
The IP address that should point to dns_ptr.
floatingIpId Changes to this property will trigger replacement. number
The Floating IP the ip_address belongs to.
loadBalancerId Changes to this property will trigger replacement. number
The Load Balancer the ip_address belongs to.
primaryIpId Changes to this property will trigger replacement. number
The Primary IP the ip_address belongs to.
serverId Changes to this property will trigger replacement. number
The server the ip_address belongs to.
dns_ptr This property is required. str
The DNS address the ip_address should resolve to.
ip_address
This property is required.
Changes to this property will trigger replacement.
str
The IP address that should point to dns_ptr.
floating_ip_id Changes to this property will trigger replacement. int
The Floating IP the ip_address belongs to.
load_balancer_id Changes to this property will trigger replacement. int
The Load Balancer the ip_address belongs to.
primary_ip_id Changes to this property will trigger replacement. int
The Primary IP the ip_address belongs to.
server_id Changes to this property will trigger replacement. int
The server the ip_address belongs to.
dnsPtr This property is required. String
The DNS address the ip_address should resolve to.
ipAddress
This property is required.
Changes to this property will trigger replacement.
String
The IP address that should point to dns_ptr.
floatingIpId Changes to this property will trigger replacement. Number
The Floating IP the ip_address belongs to.
loadBalancerId Changes to this property will trigger replacement. Number
The Load Balancer the ip_address belongs to.
primaryIpId Changes to this property will trigger replacement. Number
The Primary IP the ip_address belongs to.
serverId Changes to this property will trigger replacement. 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)
resources:  _:    type: hcloud:Rdns    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 Changes to this property will trigger replacement. int
The Floating IP the ip_address belongs to.
IpAddress Changes to this property will trigger replacement. string
The IP address that should point to dns_ptr.
LoadBalancerId Changes to this property will trigger replacement. int
The Load Balancer the ip_address belongs to.
PrimaryIpId Changes to this property will trigger replacement. int
The Primary IP the ip_address belongs to.
ServerId Changes to this property will trigger replacement. int
The server the ip_address belongs to.
DnsPtr string
The DNS address the ip_address should resolve to.
FloatingIpId Changes to this property will trigger replacement. int
The Floating IP the ip_address belongs to.
IpAddress Changes to this property will trigger replacement. string
The IP address that should point to dns_ptr.
LoadBalancerId Changes to this property will trigger replacement. int
The Load Balancer the ip_address belongs to.
PrimaryIpId Changes to this property will trigger replacement. int
The Primary IP the ip_address belongs to.
ServerId Changes to this property will trigger replacement. int
The server the ip_address belongs to.
dnsPtr String
The DNS address the ip_address should resolve to.
floatingIpId Changes to this property will trigger replacement. Integer
The Floating IP the ip_address belongs to.
ipAddress Changes to this property will trigger replacement. String
The IP address that should point to dns_ptr.
loadBalancerId Changes to this property will trigger replacement. Integer
The Load Balancer the ip_address belongs to.
primaryIpId Changes to this property will trigger replacement. Integer
The Primary IP the ip_address belongs to.
serverId Changes to this property will trigger replacement. Integer
The server the ip_address belongs to.
dnsPtr string
The DNS address the ip_address should resolve to.
floatingIpId Changes to this property will trigger replacement. number
The Floating IP the ip_address belongs to.
ipAddress Changes to this property will trigger replacement. string
The IP address that should point to dns_ptr.
loadBalancerId Changes to this property will trigger replacement. number
The Load Balancer the ip_address belongs to.
primaryIpId Changes to this property will trigger replacement. number
The Primary IP the ip_address belongs to.
serverId Changes to this property will trigger replacement. number
The server the ip_address belongs to.
dns_ptr str
The DNS address the ip_address should resolve to.
floating_ip_id Changes to this property will trigger replacement. int
The Floating IP the ip_address belongs to.
ip_address Changes to this property will trigger replacement. str
The IP address that should point to dns_ptr.
load_balancer_id Changes to this property will trigger replacement. int
The Load Balancer the ip_address belongs to.
primary_ip_id Changes to this property will trigger replacement. int
The Primary IP the ip_address belongs to.
server_id Changes to this property will trigger replacement. int
The server the ip_address belongs to.
dnsPtr String
The DNS address the ip_address should resolve to.
floatingIpId Changes to this property will trigger replacement. Number
The Floating IP the ip_address belongs to.
ipAddress Changes to this property will trigger replacement. String
The IP address that should point to dns_ptr.
loadBalancerId Changes to this property will trigger replacement. Number
The Load Balancer the ip_address belongs to.
primaryIpId Changes to this property will trigger replacement. Number
The Primary IP the ip_address belongs to.
serverId Changes to this property will trigger replacement. 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>

$ pulumi import hcloud:index/rdns:Rdns example "$PREFIX-$ID-$IP"
Copy

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
Copy

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
Copy

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
Copy

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
Copy

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.