1. Packages
  2. Azure Classic
  3. API Docs
  4. privatedns
  5. SRVRecord

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.privatedns.SRVRecord

Explore with Pulumi AI

Enables you to manage DNS SRV Records within Azure Private DNS.

Example Usage

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

const example = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const exampleZone = new azure.privatedns.Zone("example", {
    name: "contoso.com",
    resourceGroupName: example.name,
});
const exampleSRVRecord = new azure.privatedns.SRVRecord("example", {
    name: "test",
    resourceGroupName: example.name,
    zoneName: exampleZone.name,
    ttl: 300,
    records: [
        {
            priority: 1,
            weight: 5,
            port: 8080,
            target: "target1.contoso.com",
        },
        {
            priority: 10,
            weight: 10,
            port: 8080,
            target: "target2.contoso.com",
        },
    ],
    tags: {
        Environment: "Production",
    },
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_zone = azure.privatedns.Zone("example",
    name="contoso.com",
    resource_group_name=example.name)
example_srv_record = azure.privatedns.SRVRecord("example",
    name="test",
    resource_group_name=example.name,
    zone_name=example_zone.name,
    ttl=300,
    records=[
        {
            "priority": 1,
            "weight": 5,
            "port": 8080,
            "target": "target1.contoso.com",
        },
        {
            "priority": 10,
            "weight": 10,
            "port": 8080,
            "target": "target2.contoso.com",
        },
    ],
    tags={
        "Environment": "Production",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/privatedns"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleZone, err := privatedns.NewZone(ctx, "example", &privatedns.ZoneArgs{
			Name:              pulumi.String("contoso.com"),
			ResourceGroupName: example.Name,
		})
		if err != nil {
			return err
		}
		_, err = privatedns.NewSRVRecord(ctx, "example", &privatedns.SRVRecordArgs{
			Name:              pulumi.String("test"),
			ResourceGroupName: example.Name,
			ZoneName:          exampleZone.Name,
			Ttl:               pulumi.Int(300),
			Records: privatedns.SRVRecordRecordArray{
				&privatedns.SRVRecordRecordArgs{
					Priority: pulumi.Int(1),
					Weight:   pulumi.Int(5),
					Port:     pulumi.Int(8080),
					Target:   pulumi.String("target1.contoso.com"),
				},
				&privatedns.SRVRecordRecordArgs{
					Priority: pulumi.Int(10),
					Weight:   pulumi.Int(10),
					Port:     pulumi.Int(8080),
					Target:   pulumi.String("target2.contoso.com"),
				},
			},
			Tags: pulumi.StringMap{
				"Environment": pulumi.String("Production"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });

    var exampleZone = new Azure.PrivateDns.Zone("example", new()
    {
        Name = "contoso.com",
        ResourceGroupName = example.Name,
    });

    var exampleSRVRecord = new Azure.PrivateDns.SRVRecord("example", new()
    {
        Name = "test",
        ResourceGroupName = example.Name,
        ZoneName = exampleZone.Name,
        Ttl = 300,
        Records = new[]
        {
            new Azure.PrivateDns.Inputs.SRVRecordRecordArgs
            {
                Priority = 1,
                Weight = 5,
                Port = 8080,
                Target = "target1.contoso.com",
            },
            new Azure.PrivateDns.Inputs.SRVRecordRecordArgs
            {
                Priority = 10,
                Weight = 10,
                Port = 8080,
                Target = "target2.contoso.com",
            },
        },
        Tags = 
        {
            { "Environment", "Production" },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.privatedns.Zone;
import com.pulumi.azure.privatedns.ZoneArgs;
import com.pulumi.azure.privatedns.SRVRecord;
import com.pulumi.azure.privatedns.SRVRecordArgs;
import com.pulumi.azure.privatedns.inputs.SRVRecordRecordArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());

        var exampleZone = new Zone("exampleZone", ZoneArgs.builder()
            .name("contoso.com")
            .resourceGroupName(example.name())
            .build());

        var exampleSRVRecord = new SRVRecord("exampleSRVRecord", SRVRecordArgs.builder()
            .name("test")
            .resourceGroupName(example.name())
            .zoneName(exampleZone.name())
            .ttl(300)
            .records(            
                SRVRecordRecordArgs.builder()
                    .priority(1)
                    .weight(5)
                    .port(8080)
                    .target("target1.contoso.com")
                    .build(),
                SRVRecordRecordArgs.builder()
                    .priority(10)
                    .weight(10)
                    .port(8080)
                    .target("target2.contoso.com")
                    .build())
            .tags(Map.of("Environment", "Production"))
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleZone:
    type: azure:privatedns:Zone
    name: example
    properties:
      name: contoso.com
      resourceGroupName: ${example.name}
  exampleSRVRecord:
    type: azure:privatedns:SRVRecord
    name: example
    properties:
      name: test
      resourceGroupName: ${example.name}
      zoneName: ${exampleZone.name}
      ttl: 300
      records:
        - priority: 1
          weight: 5
          port: 8080
          target: target1.contoso.com
        - priority: 10
          weight: 10
          port: 8080
          target: target2.contoso.com
      tags:
        Environment: Production
Copy

Create SRVRecord Resource

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

Constructor syntax

new SRVRecord(name: string, args: SRVRecordArgs, opts?: CustomResourceOptions);
@overload
def SRVRecord(resource_name: str,
              args: SRVRecordArgs,
              opts: Optional[ResourceOptions] = None)

@overload
def SRVRecord(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              records: Optional[Sequence[SRVRecordRecordArgs]] = None,
              resource_group_name: Optional[str] = None,
              ttl: Optional[int] = None,
              zone_name: Optional[str] = None,
              name: Optional[str] = None,
              tags: Optional[Mapping[str, str]] = None)
func NewSRVRecord(ctx *Context, name string, args SRVRecordArgs, opts ...ResourceOption) (*SRVRecord, error)
public SRVRecord(string name, SRVRecordArgs args, CustomResourceOptions? opts = null)
public SRVRecord(String name, SRVRecordArgs args)
public SRVRecord(String name, SRVRecordArgs args, CustomResourceOptions options)
type: azure:privatedns:SRVRecord
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. SRVRecordArgs
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. SRVRecordArgs
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. SRVRecordArgs
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. SRVRecordArgs
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. SRVRecordArgs
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 srvrecordResource = new Azure.PrivateDns.SRVRecord("srvrecordResource", new()
{
    Records = new[]
    {
        new Azure.PrivateDns.Inputs.SRVRecordRecordArgs
        {
            Port = 0,
            Priority = 0,
            Target = "string",
            Weight = 0,
        },
    },
    ResourceGroupName = "string",
    Ttl = 0,
    ZoneName = "string",
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := privatedns.NewSRVRecord(ctx, "srvrecordResource", &privatedns.SRVRecordArgs{
	Records: privatedns.SRVRecordRecordArray{
		&privatedns.SRVRecordRecordArgs{
			Port:     pulumi.Int(0),
			Priority: pulumi.Int(0),
			Target:   pulumi.String("string"),
			Weight:   pulumi.Int(0),
		},
	},
	ResourceGroupName: pulumi.String("string"),
	Ttl:               pulumi.Int(0),
	ZoneName:          pulumi.String("string"),
	Name:              pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var srvrecordResource = new SRVRecord("srvrecordResource", SRVRecordArgs.builder()
    .records(SRVRecordRecordArgs.builder()
        .port(0)
        .priority(0)
        .target("string")
        .weight(0)
        .build())
    .resourceGroupName("string")
    .ttl(0)
    .zoneName("string")
    .name("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
srvrecord_resource = azure.privatedns.SRVRecord("srvrecordResource",
    records=[{
        "port": 0,
        "priority": 0,
        "target": "string",
        "weight": 0,
    }],
    resource_group_name="string",
    ttl=0,
    zone_name="string",
    name="string",
    tags={
        "string": "string",
    })
Copy
const srvrecordResource = new azure.privatedns.SRVRecord("srvrecordResource", {
    records: [{
        port: 0,
        priority: 0,
        target: "string",
        weight: 0,
    }],
    resourceGroupName: "string",
    ttl: 0,
    zoneName: "string",
    name: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure:privatedns:SRVRecord
properties:
    name: string
    records:
        - port: 0
          priority: 0
          target: string
          weight: 0
    resourceGroupName: string
    tags:
        string: string
    ttl: 0
    zoneName: string
Copy

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

Records This property is required. List<SRVRecordRecord>
One or more record blocks as defined below.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
Ttl This property is required. int
The Time To Live (TTL) of the DNS record in seconds.
ZoneName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The name of the DNS SRV Record. Changing this forces a new resource to be created.
Tags Dictionary<string, string>
A mapping of tags to assign to the resource.
Records This property is required. []SRVRecordRecordArgs
One or more record blocks as defined below.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
Ttl This property is required. int
The Time To Live (TTL) of the DNS record in seconds.
ZoneName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The name of the DNS SRV Record. Changing this forces a new resource to be created.
Tags map[string]string
A mapping of tags to assign to the resource.
records This property is required. List<SRVRecordRecord>
One or more record blocks as defined below.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
ttl This property is required. Integer
The Time To Live (TTL) of the DNS record in seconds.
zoneName
This property is required.
Changes to this property will trigger replacement.
String
Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The name of the DNS SRV Record. Changing this forces a new resource to be created.
tags Map<String,String>
A mapping of tags to assign to the resource.
records This property is required. SRVRecordRecord[]
One or more record blocks as defined below.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
ttl This property is required. number
The Time To Live (TTL) of the DNS record in seconds.
zoneName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. string
The name of the DNS SRV Record. Changing this forces a new resource to be created.
tags {[key: string]: string}
A mapping of tags to assign to the resource.
records This property is required. Sequence[SRVRecordRecordArgs]
One or more record blocks as defined below.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
ttl This property is required. int
The Time To Live (TTL) of the DNS record in seconds.
zone_name
This property is required.
Changes to this property will trigger replacement.
str
Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. str
The name of the DNS SRV Record. Changing this forces a new resource to be created.
tags Mapping[str, str]
A mapping of tags to assign to the resource.
records This property is required. List<Property Map>
One or more record blocks as defined below.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
ttl This property is required. Number
The Time To Live (TTL) of the DNS record in seconds.
zoneName
This property is required.
Changes to this property will trigger replacement.
String
Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The name of the DNS SRV Record. Changing this forces a new resource to be created.
tags Map<String>
A mapping of tags to assign to the resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the SRVRecord resource produces the following output properties:

Fqdn string
The FQDN of the DNS SRV Record.
Id string
The provider-assigned unique ID for this managed resource.
Fqdn string
The FQDN of the DNS SRV Record.
Id string
The provider-assigned unique ID for this managed resource.
fqdn String
The FQDN of the DNS SRV Record.
id String
The provider-assigned unique ID for this managed resource.
fqdn string
The FQDN of the DNS SRV Record.
id string
The provider-assigned unique ID for this managed resource.
fqdn str
The FQDN of the DNS SRV Record.
id str
The provider-assigned unique ID for this managed resource.
fqdn String
The FQDN of the DNS SRV Record.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing SRVRecord Resource

Get an existing SRVRecord 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?: SRVRecordState, opts?: CustomResourceOptions): SRVRecord
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        fqdn: Optional[str] = None,
        name: Optional[str] = None,
        records: Optional[Sequence[SRVRecordRecordArgs]] = None,
        resource_group_name: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        ttl: Optional[int] = None,
        zone_name: Optional[str] = None) -> SRVRecord
func GetSRVRecord(ctx *Context, name string, id IDInput, state *SRVRecordState, opts ...ResourceOption) (*SRVRecord, error)
public static SRVRecord Get(string name, Input<string> id, SRVRecordState? state, CustomResourceOptions? opts = null)
public static SRVRecord get(String name, Output<String> id, SRVRecordState state, CustomResourceOptions options)
resources:  _:    type: azure:privatedns:SRVRecord    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:
Fqdn string
The FQDN of the DNS SRV Record.
Name Changes to this property will trigger replacement. string
The name of the DNS SRV Record. Changing this forces a new resource to be created.
Records List<SRVRecordRecord>
One or more record blocks as defined below.
ResourceGroupName Changes to this property will trigger replacement. string
Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
Tags Dictionary<string, string>
A mapping of tags to assign to the resource.
Ttl int
The Time To Live (TTL) of the DNS record in seconds.
ZoneName Changes to this property will trigger replacement. string
Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
Fqdn string
The FQDN of the DNS SRV Record.
Name Changes to this property will trigger replacement. string
The name of the DNS SRV Record. Changing this forces a new resource to be created.
Records []SRVRecordRecordArgs
One or more record blocks as defined below.
ResourceGroupName Changes to this property will trigger replacement. string
Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
Tags map[string]string
A mapping of tags to assign to the resource.
Ttl int
The Time To Live (TTL) of the DNS record in seconds.
ZoneName Changes to this property will trigger replacement. string
Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
fqdn String
The FQDN of the DNS SRV Record.
name Changes to this property will trigger replacement. String
The name of the DNS SRV Record. Changing this forces a new resource to be created.
records List<SRVRecordRecord>
One or more record blocks as defined below.
resourceGroupName Changes to this property will trigger replacement. String
Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
tags Map<String,String>
A mapping of tags to assign to the resource.
ttl Integer
The Time To Live (TTL) of the DNS record in seconds.
zoneName Changes to this property will trigger replacement. String
Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
fqdn string
The FQDN of the DNS SRV Record.
name Changes to this property will trigger replacement. string
The name of the DNS SRV Record. Changing this forces a new resource to be created.
records SRVRecordRecord[]
One or more record blocks as defined below.
resourceGroupName Changes to this property will trigger replacement. string
Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
tags {[key: string]: string}
A mapping of tags to assign to the resource.
ttl number
The Time To Live (TTL) of the DNS record in seconds.
zoneName Changes to this property will trigger replacement. string
Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
fqdn str
The FQDN of the DNS SRV Record.
name Changes to this property will trigger replacement. str
The name of the DNS SRV Record. Changing this forces a new resource to be created.
records Sequence[SRVRecordRecordArgs]
One or more record blocks as defined below.
resource_group_name Changes to this property will trigger replacement. str
Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
tags Mapping[str, str]
A mapping of tags to assign to the resource.
ttl int
The Time To Live (TTL) of the DNS record in seconds.
zone_name Changes to this property will trigger replacement. str
Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
fqdn String
The FQDN of the DNS SRV Record.
name Changes to this property will trigger replacement. String
The name of the DNS SRV Record. Changing this forces a new resource to be created.
records List<Property Map>
One or more record blocks as defined below.
resourceGroupName Changes to this property will trigger replacement. String
Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
tags Map<String>
A mapping of tags to assign to the resource.
ttl Number
The Time To Live (TTL) of the DNS record in seconds.
zoneName Changes to this property will trigger replacement. String
Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.

Supporting Types

SRVRecordRecord
, SRVRecordRecordArgs

Port This property is required. int
The Port the service is listening on.
Priority This property is required. int
The priority of the SRV record.
Target This property is required. string
The FQDN of the service.
Weight This property is required. int
The Weight of the SRV record.
Port This property is required. int
The Port the service is listening on.
Priority This property is required. int
The priority of the SRV record.
Target This property is required. string
The FQDN of the service.
Weight This property is required. int
The Weight of the SRV record.
port This property is required. Integer
The Port the service is listening on.
priority This property is required. Integer
The priority of the SRV record.
target This property is required. String
The FQDN of the service.
weight This property is required. Integer
The Weight of the SRV record.
port This property is required. number
The Port the service is listening on.
priority This property is required. number
The priority of the SRV record.
target This property is required. string
The FQDN of the service.
weight This property is required. number
The Weight of the SRV record.
port This property is required. int
The Port the service is listening on.
priority This property is required. int
The priority of the SRV record.
target This property is required. str
The FQDN of the service.
weight This property is required. int
The Weight of the SRV record.
port This property is required. Number
The Port the service is listening on.
priority This property is required. Number
The priority of the SRV record.
target This property is required. String
The FQDN of the service.
weight This property is required. Number
The Weight of the SRV record.

Import

Private DNS SRV Records can be imported using the resource id, e.g.

$ pulumi import azure:privatedns/sRVRecord:SRVRecord test /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/contoso.com/SRV/test
Copy

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

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.