SRVRecord
Enables you to manage DNS SRV Records within Azure Private DNS.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var example = new Azure.Core.ResourceGroup("example", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var testZone = new Azure.PrivateDns.Zone("testZone", new Azure.PrivateDns.ZoneArgs
{
ResourceGroupName = azurerm_resource_group.Test.Name,
});
var testSRVRecord = new Azure.PrivateDns.SRVRecord("testSRVRecord", new Azure.PrivateDns.SRVRecordArgs
{
ResourceGroupName = azurerm_resource_group.Test.Name,
ZoneName = testZone.Name,
Ttl = 300,
Records =
{
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" },
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/privatedns"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
testZone, err := privatedns.NewZone(ctx, "testZone", &privatedns.ZoneArgs{
ResourceGroupName: pulumi.Any(azurerm_resource_group.Test.Name),
})
if err != nil {
return err
}
_, err = privatedns.NewSRVRecord(ctx, "testSRVRecord", &privatedns.SRVRecordArgs{
ResourceGroupName: pulumi.Any(azurerm_resource_group.Test.Name),
ZoneName: testZone.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
})
}
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example", location="West Europe")
test_zone = azure.privatedns.Zone("testZone", resource_group_name=azurerm_resource_group["test"]["name"])
test_srv_record = azure.privatedns.SRVRecord("testSRVRecord",
resource_group_name=azurerm_resource_group["test"]["name"],
zone_name=test_zone.name,
ttl=300,
records=[
azure.privatedns.SRVRecordRecordArgs(
priority=1,
weight=5,
port=8080,
target="target1.contoso.com",
),
azure.privatedns.SRVRecordRecordArgs(
priority=10,
weight=10,
port=8080,
target="target2.contoso.com",
),
],
tags={
"Environment": "Production",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {location: "West Europe"});
const testZone = new azure.privatedns.Zone("testZone", {resourceGroupName: azurerm_resource_group.test.name});
const testSRVRecord = new azure.privatedns.SRVRecord("testSRVRecord", {
resourceGroupName: azurerm_resource_group.test.name,
zoneName: testZone.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",
},
});
Create a SRVRecord Resource
new SRVRecord(name: string, args: SRVRecordArgs, opts?: CustomResourceOptions);
@overload
def SRVRecord(resource_name: str,
opts: Optional[ResourceOptions] = 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)
@overload
def SRVRecord(resource_name: str,
args: SRVRecordArgs,
opts: Optional[ResourceOptions] = None)
func NewSRVRecord(ctx *Context, name string, args SRVRecordArgs, opts ...ResourceOption) (*SRVRecord, error)
public SRVRecord(string name, SRVRecordArgs args, CustomResourceOptions? opts = null)
- 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.
SRVRecord Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The SRVRecord resource accepts the following input properties:
- Records
List<SRVRecord
Record Args> - One or more
record
blocks as defined below. - Resource
Group stringName - Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- Ttl int
- Zone
Name string - Specifies the Private 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
[]SRVRecord
Record - One or more
record
blocks as defined below. - Resource
Group stringName - Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- Ttl int
- Zone
Name string - Specifies the Private 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
SRVRecord
Record Args[] - One or more
record
blocks as defined below. - resource
Group stringName - Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- ttl number
- zone
Name string - Specifies the Private 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[SRVRecord
Record Args] - One or more
record
blocks as defined below. - resource_
group_ strname - Specifies the resource group where the resource exists. Changing this forces a new resource to be created.
- ttl int
- zone_
name str - Specifies the Private 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.
Outputs
All input properties are implicitly available as output properties. Additionally, the SRVRecord resource produces the following output properties:
Look up an 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)
- 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.
The following state arguments are supported:
- 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<SRVRecord
Record Args> - One or more
record
blocks as defined below. - Resource
Group stringName - Specifies the resource group where the 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
- Zone
Name 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 string
- The name of the DNS SRV Record. Changing this forces a new resource to be created.
- Records
[]SRVRecord
Record - One or more
record
blocks as defined below. - Resource
Group stringName - Specifies the resource group where the 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
- Zone
Name 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 string
- The name of the DNS SRV Record. Changing this forces a new resource to be created.
- records
SRVRecord
Record Args[] - One or more
record
blocks as defined below. - resource
Group stringName - Specifies the resource group where the 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
- zone
Name 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 str
- The name of the DNS SRV Record. Changing this forces a new resource to be created.
- records
Sequence[SRVRecord
Record Args] - One or more
record
blocks as defined below. - resource_
group_ strname - Specifies the resource group where the 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
- zone_
name str - Specifies the Private DNS Zone where the resource exists. Changing this forces a new resource to be created.
Supporting Types
SRVRecordRecord
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
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.