1. Packages
  2. OVH
  3. API Docs
  4. Domain
  5. DSRecords
OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud

ovh.Domain.DSRecords

Explore with Pulumi AI

ovh logo
OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud

    Use this resource to manage a domain’s DS records.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ovh from "@ovhcloud/pulumi-ovh";
    
    const dsRecords = new ovh.domain.DSRecords("dsRecords", {
        domain: "mydomain.ovh",
        dsRecords: [{
            algorithm: "RSASHA1_NSEC3_SHA1",
            flags: "KEY_SIGNING_KEY",
            publicKey: "my_base64_encoded_public_key",
            tag: 12345,
        }],
    });
    
    import pulumi
    import pulumi_ovh as ovh
    
    ds_records = ovh.domain.DSRecords("dsRecords",
        domain="mydomain.ovh",
        ds_records=[{
            "algorithm": "RSASHA1_NSEC3_SHA1",
            "flags": "KEY_SIGNING_KEY",
            "public_key": "my_base64_encoded_public_key",
            "tag": 12345,
        }])
    
    package main
    
    import (
    	"github.com/ovh/pulumi-ovh/sdk/v2/go/ovh/domain"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := domain.NewDSRecords(ctx, "dsRecords", &domain.DSRecordsArgs{
    			Domain: pulumi.String("mydomain.ovh"),
    			DsRecords: domain.DSRecordsDsRecordArray{
    				&domain.DSRecordsDsRecordArgs{
    					Algorithm: pulumi.String("RSASHA1_NSEC3_SHA1"),
    					Flags:     pulumi.String("KEY_SIGNING_KEY"),
    					PublicKey: pulumi.String("my_base64_encoded_public_key"),
    					Tag:       pulumi.Int(12345),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ovh = Pulumi.Ovh;
    
    return await Deployment.RunAsync(() => 
    {
        var dsRecords = new Ovh.Domain.DSRecords("dsRecords", new()
        {
            Domain = "mydomain.ovh",
            DsRecords = new[]
            {
                new Ovh.Domain.Inputs.DSRecordsDsRecordArgs
                {
                    Algorithm = "RSASHA1_NSEC3_SHA1",
                    Flags = "KEY_SIGNING_KEY",
                    PublicKey = "my_base64_encoded_public_key",
                    Tag = 12345,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ovh.Domain.DSRecords;
    import com.pulumi.ovh.Domain.DSRecordsArgs;
    import com.pulumi.ovh.Domain.inputs.DSRecordsDsRecordArgs;
    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 dsRecords = new DSRecords("dsRecords", DSRecordsArgs.builder()
                .domain("mydomain.ovh")
                .dsRecords(DSRecordsDsRecordArgs.builder()
                    .algorithm("RSASHA1_NSEC3_SHA1")
                    .flags("KEY_SIGNING_KEY")
                    .publicKey("my_base64_encoded_public_key")
                    .tag(12345)
                    .build())
                .build());
    
        }
    }
    
    resources:
      dsRecords:
        type: ovh:Domain:DSRecords
        properties:
          domain: mydomain.ovh
          dsRecords:
            - algorithm: RSASHA1_NSEC3_SHA1
              flags: KEY_SIGNING_KEY
              publicKey: my_base64_encoded_public_key
              tag: 12345
    

    Create DSRecords Resource

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

    Constructor syntax

    new DSRecords(name: string, args: DSRecordsArgs, opts?: CustomResourceOptions);
    @overload
    def DSRecords(resource_name: str,
                  args: DSRecordsArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def DSRecords(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  domain: Optional[str] = None,
                  ds_records: Optional[Sequence[_domain.DSRecordsDsRecordArgs]] = None)
    func NewDSRecords(ctx *Context, name string, args DSRecordsArgs, opts ...ResourceOption) (*DSRecords, error)
    public DSRecords(string name, DSRecordsArgs args, CustomResourceOptions? opts = null)
    public DSRecords(String name, DSRecordsArgs args)
    public DSRecords(String name, DSRecordsArgs args, CustomResourceOptions options)
    
    type: ovh:Domain:DSRecords
    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 DSRecordsArgs
    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 DSRecordsArgs
    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 DSRecordsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DSRecordsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DSRecordsArgs
    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 dsrecordsResource = new Ovh.Domain.DSRecords("dsrecordsResource", new()
    {
        Domain = "string",
        DsRecords = new[]
        {
            new Ovh.Domain.Inputs.DSRecordsDsRecordArgs
            {
                Algorithm = "string",
                Flags = "string",
                PublicKey = "string",
                Tag = 0,
            },
        },
    });
    
    example, err := Domain.NewDSRecords(ctx, "dsrecordsResource", &Domain.DSRecordsArgs{
    	Domain: pulumi.String("string"),
    	DsRecords: domain.DSRecordsDsRecordArray{
    		&domain.DSRecordsDsRecordArgs{
    			Algorithm: pulumi.String("string"),
    			Flags:     pulumi.String("string"),
    			PublicKey: pulumi.String("string"),
    			Tag:       pulumi.Int(0),
    		},
    	},
    })
    
    var dsrecordsResource = new DSRecords("dsrecordsResource", DSRecordsArgs.builder()
        .domain("string")
        .dsRecords(DSRecordsDsRecordArgs.builder()
            .algorithm("string")
            .flags("string")
            .publicKey("string")
            .tag(0)
            .build())
        .build());
    
    dsrecords_resource = ovh.domain.DSRecords("dsrecordsResource",
        domain="string",
        ds_records=[{
            "algorithm": "string",
            "flags": "string",
            "public_key": "string",
            "tag": 0,
        }])
    
    const dsrecordsResource = new ovh.domain.DSRecords("dsrecordsResource", {
        domain: "string",
        dsRecords: [{
            algorithm: "string",
            flags: "string",
            publicKey: "string",
            tag: 0,
        }],
    });
    
    type: ovh:Domain:DSRecords
    properties:
        domain: string
        dsRecords:
            - algorithm: string
              flags: string
              publicKey: string
              tag: 0
    

    DSRecords 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 DSRecords resource accepts the following input properties:

    Domain string
    Domain name for which to manage DS records
    DsRecords List<DSRecordsDsRecord>
    Details about a DS record
    Domain string
    Domain name for which to manage DS records
    DsRecords []DSRecordsDsRecordArgs
    Details about a DS record
    domain String
    Domain name for which to manage DS records
    dsRecords List<DSRecordsDsRecord>
    Details about a DS record
    domain string
    Domain name for which to manage DS records
    dsRecords DSRecordsDsRecord[]
    Details about a DS record
    domain str
    Domain name for which to manage DS records
    ds_records Sequence[domain.DSRecordsDsRecordArgs]
    Details about a DS record
    domain String
    Domain name for which to manage DS records
    dsRecords List<Property Map>
    Details about a DS record

    Outputs

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

    Get an existing DSRecords 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?: DSRecordsState, opts?: CustomResourceOptions): DSRecords
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            domain: Optional[str] = None,
            ds_records: Optional[Sequence[_domain.DSRecordsDsRecordArgs]] = None) -> DSRecords
    func GetDSRecords(ctx *Context, name string, id IDInput, state *DSRecordsState, opts ...ResourceOption) (*DSRecords, error)
    public static DSRecords Get(string name, Input<string> id, DSRecordsState? state, CustomResourceOptions? opts = null)
    public static DSRecords get(String name, Output<String> id, DSRecordsState state, CustomResourceOptions options)
    resources:  _:    type: ovh:Domain:DSRecords    get:      id: ${id}
    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:
    Domain string
    Domain name for which to manage DS records
    DsRecords List<DSRecordsDsRecord>
    Details about a DS record
    Domain string
    Domain name for which to manage DS records
    DsRecords []DSRecordsDsRecordArgs
    Details about a DS record
    domain String
    Domain name for which to manage DS records
    dsRecords List<DSRecordsDsRecord>
    Details about a DS record
    domain string
    Domain name for which to manage DS records
    dsRecords DSRecordsDsRecord[]
    Details about a DS record
    domain str
    Domain name for which to manage DS records
    ds_records Sequence[domain.DSRecordsDsRecordArgs]
    Details about a DS record
    domain String
    Domain name for which to manage DS records
    dsRecords List<Property Map>
    Details about a DS record

    Supporting Types

    DSRecordsDsRecord, DSRecordsDsRecordArgs

    Algorithm string
    The record algorithm (RSASHA1, RSASHA1_NSEC3_SHA1, RSASHA256, RSASHA512, ECDSAP256SHA256, ECDSAP384SHA384, ED25519)
    Flags string
    The record flag (ZONE_SIGNING_KEY, KEY_SIGNING_KEY)
    PublicKey string
    The record base64 encoded public key
    Tag int
    The record tag
    Algorithm string
    The record algorithm (RSASHA1, RSASHA1_NSEC3_SHA1, RSASHA256, RSASHA512, ECDSAP256SHA256, ECDSAP384SHA384, ED25519)
    Flags string
    The record flag (ZONE_SIGNING_KEY, KEY_SIGNING_KEY)
    PublicKey string
    The record base64 encoded public key
    Tag int
    The record tag
    algorithm String
    The record algorithm (RSASHA1, RSASHA1_NSEC3_SHA1, RSASHA256, RSASHA512, ECDSAP256SHA256, ECDSAP384SHA384, ED25519)
    flags String
    The record flag (ZONE_SIGNING_KEY, KEY_SIGNING_KEY)
    publicKey String
    The record base64 encoded public key
    tag Integer
    The record tag
    algorithm string
    The record algorithm (RSASHA1, RSASHA1_NSEC3_SHA1, RSASHA256, RSASHA512, ECDSAP256SHA256, ECDSAP384SHA384, ED25519)
    flags string
    The record flag (ZONE_SIGNING_KEY, KEY_SIGNING_KEY)
    publicKey string
    The record base64 encoded public key
    tag number
    The record tag
    algorithm str
    The record algorithm (RSASHA1, RSASHA1_NSEC3_SHA1, RSASHA256, RSASHA512, ECDSAP256SHA256, ECDSAP384SHA384, ED25519)
    flags str
    The record flag (ZONE_SIGNING_KEY, KEY_SIGNING_KEY)
    public_key str
    The record base64 encoded public key
    tag int
    The record tag
    algorithm String
    The record algorithm (RSASHA1, RSASHA1_NSEC3_SHA1, RSASHA256, RSASHA512, ECDSAP256SHA256, ECDSAP384SHA384, ED25519)
    flags String
    The record flag (ZONE_SIGNING_KEY, KEY_SIGNING_KEY)
    publicKey String
    The record base64 encoded public key
    tag Number
    The record tag

    Import

    DS records can be imported using their domain.

    Using the following configuration:

    hcl

    import {

    to = ovh_domain_ds_records.ds_records

    id = “

    }

    You can then run:

    bash

    $ pulumi preview -generate-config-out=ds_records.tf

    $ pulumi up

    The file ds_records.tf will then contain the imported resource’s configuration, that can be copied next to the import block above.

    See https://developer.hashicorp.com/terraform/language/import/generating-configuration for more details.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    ovh ovh/pulumi-ovh
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the ovh Terraform Provider.
    ovh logo
    OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud