1. Packages
  2. Linode
  3. API Docs
  4. Rdns
Linode v4.17.0 published on Wednesday, Mar 27, 2024 by Pulumi

linode.Rdns

Explore with Pulumi AI

linode logo
Linode v4.17.0 published on Wednesday, Mar 27, 2024 by Pulumi

    Provides a Linode RDNS resource. This can be used to create and modify RDNS records.

    Linode RDNS names must have a matching address value in an A or AAAA record. This A or AAAA name must be resolvable at the time the RDNS resource is being associated.

    For more information, see the Linode APIv4 docs and the Configure your Linode for Reverse DNS guide.

    Example Usage

    The following example shows how one might use this resource to configure an RDNS address for an IP address.

    import * as pulumi from "@pulumi/pulumi";
    import * as linode from "@pulumi/linode";
    
    const fooInstance = new linode.Instance("fooInstance", {
        image: "linode/alpine3.19",
        region: "ca-east",
        type: "g6-dedicated-2",
    });
    const fooRdns = new linode.Rdns("fooRdns", {
        address: fooInstance.ipAddress,
        rdns: pulumi.interpolate`${fooInstance.ipAddress}.nip.io`,
    });
    
    import pulumi
    import pulumi_linode as linode
    
    foo_instance = linode.Instance("fooInstance",
        image="linode/alpine3.19",
        region="ca-east",
        type="g6-dedicated-2")
    foo_rdns = linode.Rdns("fooRdns",
        address=foo_instance.ip_address,
        rdns=foo_instance.ip_address.apply(lambda ip_address: f"{ip_address}.nip.io"))
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-linode/sdk/v4/go/linode"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		fooInstance, err := linode.NewInstance(ctx, "fooInstance", &linode.InstanceArgs{
    			Image:  pulumi.String("linode/alpine3.19"),
    			Region: pulumi.String("ca-east"),
    			Type:   pulumi.String("g6-dedicated-2"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = linode.NewRdns(ctx, "fooRdns", &linode.RdnsArgs{
    			Address: fooInstance.IpAddress,
    			Rdns: fooInstance.IpAddress.ApplyT(func(ipAddress string) (string, error) {
    				return fmt.Sprintf("%v.nip.io", ipAddress), nil
    			}).(pulumi.StringOutput),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Linode = Pulumi.Linode;
    
    return await Deployment.RunAsync(() => 
    {
        var fooInstance = new Linode.Instance("fooInstance", new()
        {
            Image = "linode/alpine3.19",
            Region = "ca-east",
            Type = "g6-dedicated-2",
        });
    
        var fooRdns = new Linode.Rdns("fooRdns", new()
        {
            Address = fooInstance.IpAddress,
            RdnsName = fooInstance.IpAddress.Apply(ipAddress => $"{ipAddress}.nip.io"),
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.linode.Instance;
    import com.pulumi.linode.InstanceArgs;
    import com.pulumi.linode.Rdns;
    import com.pulumi.linode.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 fooInstance = new Instance("fooInstance", InstanceArgs.builder()        
                .image("linode/alpine3.19")
                .region("ca-east")
                .type("g6-dedicated-2")
                .build());
    
            var fooRdns = new Rdns("fooRdns", RdnsArgs.builder()        
                .address(fooInstance.ipAddress())
                .rdns(fooInstance.ipAddress().applyValue(ipAddress -> String.format("%s.nip.io", ipAddress)))
                .build());
    
        }
    }
    
    resources:
      fooRdns:
        type: linode:Rdns
        properties:
          address: ${fooInstance.ipAddress}
          rdns: ${fooInstance.ipAddress}.nip.io
      fooInstance:
        type: linode:Instance
        properties:
          image: linode/alpine3.19
          region: ca-east
          type: g6-dedicated-2
    

    The following example shows how one might use this resource to configure RDNS for multiple IP addresses.

    Create Rdns Resource

    new Rdns(name: string, args: RdnsArgs, opts?: CustomResourceOptions);
    @overload
    def Rdns(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             address: Optional[str] = None,
             rdns: Optional[str] = None,
             timeouts: Optional[RdnsTimeoutsArgs] = None,
             wait_for_available: Optional[bool] = None)
    @overload
    def Rdns(resource_name: str,
             args: RdnsArgs,
             opts: Optional[ResourceOptions] = 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: linode:Rdns
    properties: # The arguments to resource properties.
    options: # 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.
    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.

    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:

    Address string
    The Public IPv4 or IPv6 address that will receive the PTR record. A matching A or AAAA record must exist.
    RdnsName string
    The name of the RDNS address.
    Timeouts RdnsTimeouts
    WaitForAvailable bool
    If true, the RDNS assignment will be retried within the operation timeout period.
    Address string
    The Public IPv4 or IPv6 address that will receive the PTR record. A matching A or AAAA record must exist.
    Rdns string
    The name of the RDNS address.
    Timeouts RdnsTimeoutsArgs
    WaitForAvailable bool
    If true, the RDNS assignment will be retried within the operation timeout period.
    address String
    The Public IPv4 or IPv6 address that will receive the PTR record. A matching A or AAAA record must exist.
    rdns String
    The name of the RDNS address.
    timeouts RdnsTimeouts
    waitForAvailable Boolean
    If true, the RDNS assignment will be retried within the operation timeout period.
    address string
    The Public IPv4 or IPv6 address that will receive the PTR record. A matching A or AAAA record must exist.
    rdns string
    The name of the RDNS address.
    timeouts RdnsTimeouts
    waitForAvailable boolean
    If true, the RDNS assignment will be retried within the operation timeout period.
    address str
    The Public IPv4 or IPv6 address that will receive the PTR record. A matching A or AAAA record must exist.
    rdns str
    The name of the RDNS address.
    timeouts RdnsTimeoutsArgs
    wait_for_available bool
    If true, the RDNS assignment will be retried within the operation timeout period.
    address String
    The Public IPv4 or IPv6 address that will receive the PTR record. A matching A or AAAA record must exist.
    rdns String
    The name of the RDNS address.
    timeouts Property Map
    waitForAvailable Boolean
    If true, the RDNS assignment will be retried within the operation timeout period.

    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,
            address: Optional[str] = None,
            rdns: Optional[str] = None,
            timeouts: Optional[RdnsTimeoutsArgs] = None,
            wait_for_available: Optional[bool] = 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:
    Address string
    The Public IPv4 or IPv6 address that will receive the PTR record. A matching A or AAAA record must exist.
    RdnsName string
    The name of the RDNS address.
    Timeouts RdnsTimeouts
    WaitForAvailable bool
    If true, the RDNS assignment will be retried within the operation timeout period.
    Address string
    The Public IPv4 or IPv6 address that will receive the PTR record. A matching A or AAAA record must exist.
    Rdns string
    The name of the RDNS address.
    Timeouts RdnsTimeoutsArgs
    WaitForAvailable bool
    If true, the RDNS assignment will be retried within the operation timeout period.
    address String
    The Public IPv4 or IPv6 address that will receive the PTR record. A matching A or AAAA record must exist.
    rdns String
    The name of the RDNS address.
    timeouts RdnsTimeouts
    waitForAvailable Boolean
    If true, the RDNS assignment will be retried within the operation timeout period.
    address string
    The Public IPv4 or IPv6 address that will receive the PTR record. A matching A or AAAA record must exist.
    rdns string
    The name of the RDNS address.
    timeouts RdnsTimeouts
    waitForAvailable boolean
    If true, the RDNS assignment will be retried within the operation timeout period.
    address str
    The Public IPv4 or IPv6 address that will receive the PTR record. A matching A or AAAA record must exist.
    rdns str
    The name of the RDNS address.
    timeouts RdnsTimeoutsArgs
    wait_for_available bool
    If true, the RDNS assignment will be retried within the operation timeout period.
    address String
    The Public IPv4 or IPv6 address that will receive the PTR record. A matching A or AAAA record must exist.
    rdns String
    The name of the RDNS address.
    timeouts Property Map
    waitForAvailable Boolean
    If true, the RDNS assignment will be retried within the operation timeout period.

    Supporting Types

    RdnsTimeouts, RdnsTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    Linodes RDNS resources can be imported using the address as the id.

    $ pulumi import linode:index/rdns:Rdns foo 123.123.123.123
    

    Package Details

    Repository
    Linode pulumi/pulumi-linode
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the linode Terraform Provider.
    linode logo
    Linode v4.17.0 published on Wednesday, Mar 27, 2024 by Pulumi