azure-native.network.PrivateDnsZoneGroup

Explore with Pulumi AI

Private dns zone group resource. API Version: 2020-11-01.

Example Usage

Create private dns zone group

using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var privateDnsZoneGroup = new AzureNative.Network.PrivateDnsZoneGroup("privateDnsZoneGroup", new()
    {
        PrivateDnsZoneConfigs = new[]
        {
            new AzureNative.Network.Inputs.PrivateDnsZoneConfigArgs
            {
                PrivateDnsZoneId = "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/privateDnsZones/zone1.com",
            },
        },
        PrivateDnsZoneGroupName = "testPdnsgroup",
        PrivateEndpointName = "testPe",
        ResourceGroupName = "rg1",
    });

});
package main

import (
	network "github.com/pulumi/pulumi-azure-native/sdk/go/azure/network"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := network.NewPrivateDnsZoneGroup(ctx, "privateDnsZoneGroup", &network.PrivateDnsZoneGroupArgs{
			PrivateDnsZoneConfigs: []network.PrivateDnsZoneConfigArgs{
				{
					PrivateDnsZoneId: pulumi.String("/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/privateDnsZones/zone1.com"),
				},
			},
			PrivateDnsZoneGroupName: pulumi.String("testPdnsgroup"),
			PrivateEndpointName:     pulumi.String("testPe"),
			ResourceGroupName:       pulumi.String("rg1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.network.PrivateDnsZoneGroup;
import com.pulumi.azurenative.network.PrivateDnsZoneGroupArgs;
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 privateDnsZoneGroup = new PrivateDnsZoneGroup("privateDnsZoneGroup", PrivateDnsZoneGroupArgs.builder()        
            .privateDnsZoneConfigs(Map.of("privateDnsZoneId", "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/privateDnsZones/zone1.com"))
            .privateDnsZoneGroupName("testPdnsgroup")
            .privateEndpointName("testPe")
            .resourceGroupName("rg1")
            .build());

    }
}
import pulumi
import pulumi_azure_native as azure_native

private_dns_zone_group = azure_native.network.PrivateDnsZoneGroup("privateDnsZoneGroup",
    private_dns_zone_configs=[azure_native.network.PrivateDnsZoneConfigArgs(
        private_dns_zone_id="/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/privateDnsZones/zone1.com",
    )],
    private_dns_zone_group_name="testPdnsgroup",
    private_endpoint_name="testPe",
    resource_group_name="rg1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const privateDnsZoneGroup = new azure_native.network.PrivateDnsZoneGroup("privateDnsZoneGroup", {
    privateDnsZoneConfigs: [{
        privateDnsZoneId: "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/privateDnsZones/zone1.com",
    }],
    privateDnsZoneGroupName: "testPdnsgroup",
    privateEndpointName: "testPe",
    resourceGroupName: "rg1",
});
resources:
  privateDnsZoneGroup:
    type: azure-native:network:PrivateDnsZoneGroup
    properties:
      privateDnsZoneConfigs:
        - privateDnsZoneId: /subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/privateDnsZones/zone1.com
      privateDnsZoneGroupName: testPdnsgroup
      privateEndpointName: testPe
      resourceGroupName: rg1

Create PrivateDnsZoneGroup Resource

new PrivateDnsZoneGroup(name: string, args: PrivateDnsZoneGroupArgs, opts?: CustomResourceOptions);
@overload
def PrivateDnsZoneGroup(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        id: Optional[str] = None,
                        name: Optional[str] = None,
                        private_dns_zone_configs: Optional[Sequence[PrivateDnsZoneConfigArgs]] = None,
                        private_dns_zone_group_name: Optional[str] = None,
                        private_endpoint_name: Optional[str] = None,
                        resource_group_name: Optional[str] = None)
@overload
def PrivateDnsZoneGroup(resource_name: str,
                        args: PrivateDnsZoneGroupArgs,
                        opts: Optional[ResourceOptions] = None)
func NewPrivateDnsZoneGroup(ctx *Context, name string, args PrivateDnsZoneGroupArgs, opts ...ResourceOption) (*PrivateDnsZoneGroup, error)
public PrivateDnsZoneGroup(string name, PrivateDnsZoneGroupArgs args, CustomResourceOptions? opts = null)
public PrivateDnsZoneGroup(String name, PrivateDnsZoneGroupArgs args)
public PrivateDnsZoneGroup(String name, PrivateDnsZoneGroupArgs args, CustomResourceOptions options)
type: azure-native:network:PrivateDnsZoneGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args PrivateDnsZoneGroupArgs
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 PrivateDnsZoneGroupArgs
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 PrivateDnsZoneGroupArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args PrivateDnsZoneGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args PrivateDnsZoneGroupArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

PrivateEndpointName string

The name of the private endpoint.

ResourceGroupName string

The name of the resource group.

Id string

Resource ID.

Name string

Name of the resource that is unique within a resource group. This name can be used to access the resource.

PrivateDnsZoneConfigs List<Pulumi.AzureNative.Network.Inputs.PrivateDnsZoneConfigArgs>

A collection of private dns zone configurations of the private dns zone group.

PrivateDnsZoneGroupName string

The name of the private dns zone group.

PrivateEndpointName string

The name of the private endpoint.

ResourceGroupName string

The name of the resource group.

Id string

Resource ID.

Name string

Name of the resource that is unique within a resource group. This name can be used to access the resource.

PrivateDnsZoneConfigs []PrivateDnsZoneConfigArgs

A collection of private dns zone configurations of the private dns zone group.

PrivateDnsZoneGroupName string

The name of the private dns zone group.

privateEndpointName String

The name of the private endpoint.

resourceGroupName String

The name of the resource group.

id String

Resource ID.

name String

Name of the resource that is unique within a resource group. This name can be used to access the resource.

privateDnsZoneConfigs List<PrivateDnsZoneConfigArgs>

A collection of private dns zone configurations of the private dns zone group.

privateDnsZoneGroupName String

The name of the private dns zone group.

privateEndpointName string

The name of the private endpoint.

resourceGroupName string

The name of the resource group.

id string

Resource ID.

name string

Name of the resource that is unique within a resource group. This name can be used to access the resource.

privateDnsZoneConfigs PrivateDnsZoneConfigArgs[]

A collection of private dns zone configurations of the private dns zone group.

privateDnsZoneGroupName string

The name of the private dns zone group.

private_endpoint_name str

The name of the private endpoint.

resource_group_name str

The name of the resource group.

id str

Resource ID.

name str

Name of the resource that is unique within a resource group. This name can be used to access the resource.

private_dns_zone_configs Sequence[PrivateDnsZoneConfigArgs]

A collection of private dns zone configurations of the private dns zone group.

private_dns_zone_group_name str

The name of the private dns zone group.

privateEndpointName String

The name of the private endpoint.

resourceGroupName String

The name of the resource group.

id String

Resource ID.

name String

Name of the resource that is unique within a resource group. This name can be used to access the resource.

privateDnsZoneConfigs List<Property Map>

A collection of private dns zone configurations of the private dns zone group.

privateDnsZoneGroupName String

The name of the private dns zone group.

Outputs

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

Etag string

A unique read-only string that changes whenever the resource is updated.

Id string

The provider-assigned unique ID for this managed resource.

ProvisioningState string

The provisioning state of the private dns zone group resource.

Etag string

A unique read-only string that changes whenever the resource is updated.

Id string

The provider-assigned unique ID for this managed resource.

ProvisioningState string

The provisioning state of the private dns zone group resource.

etag String

A unique read-only string that changes whenever the resource is updated.

id String

The provider-assigned unique ID for this managed resource.

provisioningState String

The provisioning state of the private dns zone group resource.

etag string

A unique read-only string that changes whenever the resource is updated.

id string

The provider-assigned unique ID for this managed resource.

provisioningState string

The provisioning state of the private dns zone group resource.

etag str

A unique read-only string that changes whenever the resource is updated.

id str

The provider-assigned unique ID for this managed resource.

provisioning_state str

The provisioning state of the private dns zone group resource.

etag String

A unique read-only string that changes whenever the resource is updated.

id String

The provider-assigned unique ID for this managed resource.

provisioningState String

The provisioning state of the private dns zone group resource.

Supporting Types

PrivateDnsZoneConfig

Name string

Name of the resource that is unique within a resource group. This name can be used to access the resource.

PrivateDnsZoneId string

The resource id of the private dns zone.

Name string

Name of the resource that is unique within a resource group. This name can be used to access the resource.

PrivateDnsZoneId string

The resource id of the private dns zone.

name String

Name of the resource that is unique within a resource group. This name can be used to access the resource.

privateDnsZoneId String

The resource id of the private dns zone.

name string

Name of the resource that is unique within a resource group. This name can be used to access the resource.

privateDnsZoneId string

The resource id of the private dns zone.

name str

Name of the resource that is unique within a resource group. This name can be used to access the resource.

private_dns_zone_id str

The resource id of the private dns zone.

name String

Name of the resource that is unique within a resource group. This name can be used to access the resource.

privateDnsZoneId String

The resource id of the private dns zone.

PrivateDnsZoneConfigResponse

RecordSets List<Pulumi.AzureNative.Network.Inputs.RecordSetResponse>

A collection of information regarding a recordSet, holding information to identify private resources.

Name string

Name of the resource that is unique within a resource group. This name can be used to access the resource.

PrivateDnsZoneId string

The resource id of the private dns zone.

RecordSets []RecordSetResponse

A collection of information regarding a recordSet, holding information to identify private resources.

Name string

Name of the resource that is unique within a resource group. This name can be used to access the resource.

PrivateDnsZoneId string

The resource id of the private dns zone.

recordSets List<RecordSetResponse>

A collection of information regarding a recordSet, holding information to identify private resources.

name String

Name of the resource that is unique within a resource group. This name can be used to access the resource.

privateDnsZoneId String

The resource id of the private dns zone.

recordSets RecordSetResponse[]

A collection of information regarding a recordSet, holding information to identify private resources.

name string

Name of the resource that is unique within a resource group. This name can be used to access the resource.

privateDnsZoneId string

The resource id of the private dns zone.

record_sets Sequence[RecordSetResponse]

A collection of information regarding a recordSet, holding information to identify private resources.

name str

Name of the resource that is unique within a resource group. This name can be used to access the resource.

private_dns_zone_id str

The resource id of the private dns zone.

recordSets List<Property Map>

A collection of information regarding a recordSet, holding information to identify private resources.

name String

Name of the resource that is unique within a resource group. This name can be used to access the resource.

privateDnsZoneId String

The resource id of the private dns zone.

RecordSetResponse

ProvisioningState string

The provisioning state of the recordset.

Fqdn string

Fqdn that resolves to private endpoint ip address.

IpAddresses List<string>

The private ip address of the private endpoint.

RecordSetName string

Recordset name.

RecordType string

Resource record type.

Ttl int

Recordset time to live.

ProvisioningState string

The provisioning state of the recordset.

Fqdn string

Fqdn that resolves to private endpoint ip address.

IpAddresses []string

The private ip address of the private endpoint.

RecordSetName string

Recordset name.

RecordType string

Resource record type.

Ttl int

Recordset time to live.

provisioningState String

The provisioning state of the recordset.

fqdn String

Fqdn that resolves to private endpoint ip address.

ipAddresses List<String>

The private ip address of the private endpoint.

recordSetName String

Recordset name.

recordType String

Resource record type.

ttl Integer

Recordset time to live.

provisioningState string

The provisioning state of the recordset.

fqdn string

Fqdn that resolves to private endpoint ip address.

ipAddresses string[]

The private ip address of the private endpoint.

recordSetName string

Recordset name.

recordType string

Resource record type.

ttl number

Recordset time to live.

provisioning_state str

The provisioning state of the recordset.

fqdn str

Fqdn that resolves to private endpoint ip address.

ip_addresses Sequence[str]

The private ip address of the private endpoint.

record_set_name str

Recordset name.

record_type str

Resource record type.

ttl int

Recordset time to live.

provisioningState String

The provisioning state of the recordset.

fqdn String

Fqdn that resolves to private endpoint ip address.

ipAddresses List<String>

The private ip address of the private endpoint.

recordSetName String

Recordset name.

recordType String

Resource record type.

ttl Number

Recordset time to live.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:network:PrivateDnsZoneGroup testPdnsgroup /subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/privateLinkServices/testPe/privateDnsZoneGroups/testPdnsgroup 

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0