We recommend using Azure Native.
azure.dns.SrvRecord
Explore with Pulumi AI
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.dns.Zone("example", {
name: "mydomain.com",
resourceGroupName: example.name,
});
const exampleSrvRecord = new azure.dns.SrvRecord("example", {
name: "test",
zoneName: exampleZone.name,
resourceGroupName: example.name,
ttl: 300,
records: [{
priority: 1,
weight: 5,
port: 8080,
target: "target1.contoso.com",
}],
tags: {
Environment: "Production",
},
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_zone = azure.dns.Zone("example",
name="mydomain.com",
resource_group_name=example.name)
example_srv_record = azure.dns.SrvRecord("example",
name="test",
zone_name=example_zone.name,
resource_group_name=example.name,
ttl=300,
records=[{
"priority": 1,
"weight": 5,
"port": 8080,
"target": "target1.contoso.com",
}],
tags={
"Environment": "Production",
})
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/dns"
"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 := dns.NewZone(ctx, "example", &dns.ZoneArgs{
Name: pulumi.String("mydomain.com"),
ResourceGroupName: example.Name,
})
if err != nil {
return err
}
_, err = dns.NewSrvRecord(ctx, "example", &dns.SrvRecordArgs{
Name: pulumi.String("test"),
ZoneName: exampleZone.Name,
ResourceGroupName: example.Name,
Ttl: pulumi.Int(300),
Records: dns.SrvRecordRecordArray{
&dns.SrvRecordRecordArgs{
Priority: pulumi.Int(1),
Weight: pulumi.Int(5),
Port: pulumi.Int(8080),
Target: pulumi.String("target1.contoso.com"),
},
},
Tags: pulumi.StringMap{
"Environment": pulumi.String("Production"),
},
})
if err != nil {
return err
}
return nil
})
}
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.Dns.Zone("example", new()
{
Name = "mydomain.com",
ResourceGroupName = example.Name,
});
var exampleSrvRecord = new Azure.Dns.SrvRecord("example", new()
{
Name = "test",
ZoneName = exampleZone.Name,
ResourceGroupName = example.Name,
Ttl = 300,
Records = new[]
{
new Azure.Dns.Inputs.SrvRecordRecordArgs
{
Priority = 1,
Weight = 5,
Port = 8080,
Target = "target1.contoso.com",
},
},
Tags =
{
{ "Environment", "Production" },
},
});
});
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.dns.Zone;
import com.pulumi.azure.dns.ZoneArgs;
import com.pulumi.azure.dns.SrvRecord;
import com.pulumi.azure.dns.SrvRecordArgs;
import com.pulumi.azure.dns.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("mydomain.com")
.resourceGroupName(example.name())
.build());
var exampleSrvRecord = new SrvRecord("exampleSrvRecord", SrvRecordArgs.builder()
.name("test")
.zoneName(exampleZone.name())
.resourceGroupName(example.name())
.ttl(300)
.records(SrvRecordRecordArgs.builder()
.priority(1)
.weight(5)
.port(8080)
.target("target1.contoso.com")
.build())
.tags(Map.of("Environment", "Production"))
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleZone:
type: azure:dns:Zone
name: example
properties:
name: mydomain.com
resourceGroupName: ${example.name}
exampleSrvRecord:
type: azure:dns:SrvRecord
name: example
properties:
name: test
zoneName: ${exampleZone.name}
resourceGroupName: ${example.name}
ttl: 300
records:
- priority: 1
weight: 5
port: 8080
target: target1.contoso.com
tags:
Environment: Production
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:dns:SrvRecord
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 SrvRecordArgs
- 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 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 string
- The unique name of the resource.
- args SrvRecordArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SrvRecordArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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.Dns.SrvRecord("srvRecordResource", new()
{
Records = new[]
{
new Azure.Dns.Inputs.SrvRecordRecordArgs
{
Port = 0,
Priority = 0,
Target = "string",
Weight = 0,
},
},
ResourceGroupName = "string",
Ttl = 0,
ZoneName = "string",
Name = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := dns.NewSrvRecord(ctx, "srvRecordResource", &dns.SrvRecordArgs{
Records: dns.SrvRecordRecordArray{
&dns.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"),
},
})
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());
srv_record_resource = azure.dns.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",
})
const srvRecordResource = new azure.dns.SrvRecord("srvRecordResource", {
records: [{
port: 0,
priority: 0,
target: "string",
weight: 0,
}],
resourceGroupName: "string",
ttl: 0,
zoneName: "string",
name: "string",
tags: {
string: "string",
},
});
type: azure:dns:SrvRecord
properties:
name: string
records:
- port: 0
priority: 0
target: string
weight: 0
resourceGroupName: string
tags:
string: string
ttl: 0
zoneName: string
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
The SrvRecord resource accepts the following input properties:
- Records
List<Srv
Record Record> - A list of values that make up the SRV record. Each
record
block supports fields documented below. - Resource
Group stringName - Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- Ttl int
- The Time To Live (TTL) of the DNS record in seconds.
- Zone
Name string - Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
- Name string
- The name of the DNS SRV Record. Changing this forces a new resource to be created.
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Records
[]Srv
Record Record Args - A list of values that make up the SRV record. Each
record
block supports fields documented below. - Resource
Group stringName - Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- Ttl int
- The Time To Live (TTL) of the DNS record in seconds.
- Zone
Name string - Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
- Name string
- The name of the DNS SRV Record. Changing this forces a new resource to be created.
- map[string]string
- A mapping of tags to assign to the resource.
- records
List<Srv
Record Record> - A list of values that make up the SRV record. Each
record
block supports fields documented below. - resource
Group StringName - Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- ttl Integer
- The Time To Live (TTL) of the DNS record in seconds.
- zone
Name String - Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
- name String
- The name of the DNS SRV Record. Changing this forces a new resource to be created.
- Map<String,String>
- A mapping of tags to assign to the resource.
- records
Srv
Record Record[] - A list of values that make up the SRV record. Each
record
block supports fields documented below. - resource
Group stringName - Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- ttl number
- The Time To Live (TTL) of the DNS record in seconds.
- zone
Name string - Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
- name string
- The name of the DNS SRV Record. Changing this forces a new resource to be created.
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- records
Sequence[Srv
Record Record Args] - A list of values that make up the SRV record. Each
record
block supports fields documented below. - resource_
group_ strname - Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- ttl int
- The Time To Live (TTL) of the DNS record in seconds.
- zone_
name str - Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
- name str
- The name of the DNS SRV Record. Changing this forces a new resource to be created.
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- records List<Property Map>
- A list of values that make up the SRV record. Each
record
block supports fields documented below. - resource
Group StringName - Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- ttl Number
- The Time To Live (TTL) of the DNS record in seconds.
- zone
Name String - Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
- name String
- The name of the DNS SRV Record. Changing this forces a new resource to be created.
- 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:
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)
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.
- Fqdn string
- The FQDN of the DNS SRV Record.
- Name string
- The name of the DNS SRV Record. Changing this forces a new resource to be created.
- Records
List<Srv
Record Record> - A list of values that make up the SRV record. Each
record
block supports fields documented below. - Resource
Group stringName - Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- 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.
- Zone
Name string - Specifies the 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 string
- The name of the DNS SRV Record. Changing this forces a new resource to be created.
- Records
[]Srv
Record Record Args - A list of values that make up the SRV record. Each
record
block supports fields documented below. - Resource
Group stringName - Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- 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.
- Zone
Name string - Specifies the 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 String
- The name of the DNS SRV Record. Changing this forces a new resource to be created.
- records
List<Srv
Record Record> - A list of values that make up the SRV record. Each
record
block supports fields documented below. - resource
Group StringName - Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- 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.
- zone
Name String - Specifies the 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 string
- The name of the DNS SRV Record. Changing this forces a new resource to be created.
- records
Srv
Record Record[] - A list of values that make up the SRV record. Each
record
block supports fields documented below. - resource
Group stringName - Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- {[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.
- zone
Name string - Specifies the 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 str
- The name of the DNS SRV Record. Changing this forces a new resource to be created.
- records
Sequence[Srv
Record Record Args] - A list of values that make up the SRV record. Each
record
block supports fields documented below. - resource_
group_ strname - Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- 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 str - Specifies the 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 String
- The name of the DNS SRV Record. Changing this forces a new resource to be created.
- records List<Property Map>
- A list of values that make up the SRV record. Each
record
block supports fields documented below. - resource
Group StringName - Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
- Map<String>
- A mapping of tags to assign to the resource.
- ttl Number
- The Time To Live (TTL) of the DNS record in seconds.
- zone
Name String - Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
Supporting Types
SrvRecordRecord, SrvRecordRecordArgs
Import
SRV records can be imported using the resource id
, e.g.
$ pulumi import azure:dns/srvRecord:SrvRecord example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/dnsZones/zone1/SRV/myrecord1
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.