We recommend using Azure Native.
azure.digitaltwins.EndpointEventGrid
Explore with Pulumi AI
Manages a Digital Twins Event Grid Endpoint.
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 exampleInstance = new azure.digitaltwins.Instance("example", {
name: "example-DT",
resourceGroupName: example.name,
location: example.location,
});
const exampleTopic = new azure.eventgrid.Topic("example", {
name: "example-topic",
location: example.location,
resourceGroupName: example.name,
});
const exampleEndpointEventGrid = new azure.digitaltwins.EndpointEventGrid("example", {
name: "example-EG",
digitalTwinsId: exampleInstance.id,
eventgridTopicEndpoint: exampleTopic.endpoint,
eventgridTopicPrimaryAccessKey: exampleTopic.primaryAccessKey,
eventgridTopicSecondaryAccessKey: exampleTopic.secondaryAccessKey,
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example_resources",
location="West Europe")
example_instance = azure.digitaltwins.Instance("example",
name="example-DT",
resource_group_name=example.name,
location=example.location)
example_topic = azure.eventgrid.Topic("example",
name="example-topic",
location=example.location,
resource_group_name=example.name)
example_endpoint_event_grid = azure.digitaltwins.EndpointEventGrid("example",
name="example-EG",
digital_twins_id=example_instance.id,
eventgrid_topic_endpoint=example_topic.endpoint,
eventgrid_topic_primary_access_key=example_topic.primary_access_key,
eventgrid_topic_secondary_access_key=example_topic.secondary_access_key)
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/digitaltwins"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/eventgrid"
"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
}
exampleInstance, err := digitaltwins.NewInstance(ctx, "example", &digitaltwins.InstanceArgs{
Name: pulumi.String("example-DT"),
ResourceGroupName: example.Name,
Location: example.Location,
})
if err != nil {
return err
}
exampleTopic, err := eventgrid.NewTopic(ctx, "example", &eventgrid.TopicArgs{
Name: pulumi.String("example-topic"),
Location: example.Location,
ResourceGroupName: example.Name,
})
if err != nil {
return err
}
_, err = digitaltwins.NewEndpointEventGrid(ctx, "example", &digitaltwins.EndpointEventGridArgs{
Name: pulumi.String("example-EG"),
DigitalTwinsId: exampleInstance.ID(),
EventgridTopicEndpoint: exampleTopic.Endpoint,
EventgridTopicPrimaryAccessKey: exampleTopic.PrimaryAccessKey,
EventgridTopicSecondaryAccessKey: exampleTopic.SecondaryAccessKey,
})
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 exampleInstance = new Azure.DigitalTwins.Instance("example", new()
{
Name = "example-DT",
ResourceGroupName = example.Name,
Location = example.Location,
});
var exampleTopic = new Azure.EventGrid.Topic("example", new()
{
Name = "example-topic",
Location = example.Location,
ResourceGroupName = example.Name,
});
var exampleEndpointEventGrid = new Azure.DigitalTwins.EndpointEventGrid("example", new()
{
Name = "example-EG",
DigitalTwinsId = exampleInstance.Id,
EventgridTopicEndpoint = exampleTopic.Endpoint,
EventgridTopicPrimaryAccessKey = exampleTopic.PrimaryAccessKey,
EventgridTopicSecondaryAccessKey = exampleTopic.SecondaryAccessKey,
});
});
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.digitaltwins.Instance;
import com.pulumi.azure.digitaltwins.InstanceArgs;
import com.pulumi.azure.eventgrid.Topic;
import com.pulumi.azure.eventgrid.TopicArgs;
import com.pulumi.azure.digitaltwins.EndpointEventGrid;
import com.pulumi.azure.digitaltwins.EndpointEventGridArgs;
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 exampleInstance = new Instance("exampleInstance", InstanceArgs.builder()
.name("example-DT")
.resourceGroupName(example.name())
.location(example.location())
.build());
var exampleTopic = new Topic("exampleTopic", TopicArgs.builder()
.name("example-topic")
.location(example.location())
.resourceGroupName(example.name())
.build());
var exampleEndpointEventGrid = new EndpointEventGrid("exampleEndpointEventGrid", EndpointEventGridArgs.builder()
.name("example-EG")
.digitalTwinsId(exampleInstance.id())
.eventgridTopicEndpoint(exampleTopic.endpoint())
.eventgridTopicPrimaryAccessKey(exampleTopic.primaryAccessKey())
.eventgridTopicSecondaryAccessKey(exampleTopic.secondaryAccessKey())
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example_resources
location: West Europe
exampleInstance:
type: azure:digitaltwins:Instance
name: example
properties:
name: example-DT
resourceGroupName: ${example.name}
location: ${example.location}
exampleTopic:
type: azure:eventgrid:Topic
name: example
properties:
name: example-topic
location: ${example.location}
resourceGroupName: ${example.name}
exampleEndpointEventGrid:
type: azure:digitaltwins:EndpointEventGrid
name: example
properties:
name: example-EG
digitalTwinsId: ${exampleInstance.id}
eventgridTopicEndpoint: ${exampleTopic.endpoint}
eventgridTopicPrimaryAccessKey: ${exampleTopic.primaryAccessKey}
eventgridTopicSecondaryAccessKey: ${exampleTopic.secondaryAccessKey}
Create EndpointEventGrid Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EndpointEventGrid(name: string, args: EndpointEventGridArgs, opts?: CustomResourceOptions);
@overload
def EndpointEventGrid(resource_name: str,
args: EndpointEventGridArgs,
opts: Optional[ResourceOptions] = None)
@overload
def EndpointEventGrid(resource_name: str,
opts: Optional[ResourceOptions] = None,
digital_twins_id: Optional[str] = None,
eventgrid_topic_endpoint: Optional[str] = None,
eventgrid_topic_primary_access_key: Optional[str] = None,
eventgrid_topic_secondary_access_key: Optional[str] = None,
dead_letter_storage_secret: Optional[str] = None,
name: Optional[str] = None)
func NewEndpointEventGrid(ctx *Context, name string, args EndpointEventGridArgs, opts ...ResourceOption) (*EndpointEventGrid, error)
public EndpointEventGrid(string name, EndpointEventGridArgs args, CustomResourceOptions? opts = null)
public EndpointEventGrid(String name, EndpointEventGridArgs args)
public EndpointEventGrid(String name, EndpointEventGridArgs args, CustomResourceOptions options)
type: azure:digitaltwins:EndpointEventGrid
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 EndpointEventGridArgs
- 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 EndpointEventGridArgs
- 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 EndpointEventGridArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EndpointEventGridArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EndpointEventGridArgs
- 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 endpointEventGridResource = new Azure.DigitalTwins.EndpointEventGrid("endpointEventGridResource", new()
{
DigitalTwinsId = "string",
EventgridTopicEndpoint = "string",
EventgridTopicPrimaryAccessKey = "string",
EventgridTopicSecondaryAccessKey = "string",
DeadLetterStorageSecret = "string",
Name = "string",
});
example, err := digitaltwins.NewEndpointEventGrid(ctx, "endpointEventGridResource", &digitaltwins.EndpointEventGridArgs{
DigitalTwinsId: pulumi.String("string"),
EventgridTopicEndpoint: pulumi.String("string"),
EventgridTopicPrimaryAccessKey: pulumi.String("string"),
EventgridTopicSecondaryAccessKey: pulumi.String("string"),
DeadLetterStorageSecret: pulumi.String("string"),
Name: pulumi.String("string"),
})
var endpointEventGridResource = new EndpointEventGrid("endpointEventGridResource", EndpointEventGridArgs.builder()
.digitalTwinsId("string")
.eventgridTopicEndpoint("string")
.eventgridTopicPrimaryAccessKey("string")
.eventgridTopicSecondaryAccessKey("string")
.deadLetterStorageSecret("string")
.name("string")
.build());
endpoint_event_grid_resource = azure.digitaltwins.EndpointEventGrid("endpointEventGridResource",
digital_twins_id="string",
eventgrid_topic_endpoint="string",
eventgrid_topic_primary_access_key="string",
eventgrid_topic_secondary_access_key="string",
dead_letter_storage_secret="string",
name="string")
const endpointEventGridResource = new azure.digitaltwins.EndpointEventGrid("endpointEventGridResource", {
digitalTwinsId: "string",
eventgridTopicEndpoint: "string",
eventgridTopicPrimaryAccessKey: "string",
eventgridTopicSecondaryAccessKey: "string",
deadLetterStorageSecret: "string",
name: "string",
});
type: azure:digitaltwins:EndpointEventGrid
properties:
deadLetterStorageSecret: string
digitalTwinsId: string
eventgridTopicEndpoint: string
eventgridTopicPrimaryAccessKey: string
eventgridTopicSecondaryAccessKey: string
name: string
EndpointEventGrid 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 EndpointEventGrid resource accepts the following input properties:
- Digital
Twins stringId - The resource ID of the Digital Twins Instance. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- Eventgrid
Topic stringEndpoint - The endpoint of the Event Grid Topic.
- Eventgrid
Topic stringPrimary Access Key - The primary access key of the Event Grid Topic.
- Eventgrid
Topic stringSecondary Access Key - The secondary access key of the Event Grid Topic.
- Dead
Letter stringStorage Secret - The storage secret of the dead-lettering, whose format is
https://<storageAccountname>.blob.core.windows.net/<containerName>?<SASToken>
. When an endpoint can't deliver an event within a certain time period or after trying to deliver the event a certain number of times, it can send the undelivered event to a storage account. - Name string
- The name which should be used for this Digital Twins Eventgrid Endpoint. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- Digital
Twins stringId - The resource ID of the Digital Twins Instance. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- Eventgrid
Topic stringEndpoint - The endpoint of the Event Grid Topic.
- Eventgrid
Topic stringPrimary Access Key - The primary access key of the Event Grid Topic.
- Eventgrid
Topic stringSecondary Access Key - The secondary access key of the Event Grid Topic.
- Dead
Letter stringStorage Secret - The storage secret of the dead-lettering, whose format is
https://<storageAccountname>.blob.core.windows.net/<containerName>?<SASToken>
. When an endpoint can't deliver an event within a certain time period or after trying to deliver the event a certain number of times, it can send the undelivered event to a storage account. - Name string
- The name which should be used for this Digital Twins Eventgrid Endpoint. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- digital
Twins StringId - The resource ID of the Digital Twins Instance. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- eventgrid
Topic StringEndpoint - The endpoint of the Event Grid Topic.
- eventgrid
Topic StringPrimary Access Key - The primary access key of the Event Grid Topic.
- eventgrid
Topic StringSecondary Access Key - The secondary access key of the Event Grid Topic.
- dead
Letter StringStorage Secret - The storage secret of the dead-lettering, whose format is
https://<storageAccountname>.blob.core.windows.net/<containerName>?<SASToken>
. When an endpoint can't deliver an event within a certain time period or after trying to deliver the event a certain number of times, it can send the undelivered event to a storage account. - name String
- The name which should be used for this Digital Twins Eventgrid Endpoint. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- digital
Twins stringId - The resource ID of the Digital Twins Instance. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- eventgrid
Topic stringEndpoint - The endpoint of the Event Grid Topic.
- eventgrid
Topic stringPrimary Access Key - The primary access key of the Event Grid Topic.
- eventgrid
Topic stringSecondary Access Key - The secondary access key of the Event Grid Topic.
- dead
Letter stringStorage Secret - The storage secret of the dead-lettering, whose format is
https://<storageAccountname>.blob.core.windows.net/<containerName>?<SASToken>
. When an endpoint can't deliver an event within a certain time period or after trying to deliver the event a certain number of times, it can send the undelivered event to a storage account. - name string
- The name which should be used for this Digital Twins Eventgrid Endpoint. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- digital_
twins_ strid - The resource ID of the Digital Twins Instance. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- eventgrid_
topic_ strendpoint - The endpoint of the Event Grid Topic.
- eventgrid_
topic_ strprimary_ access_ key - The primary access key of the Event Grid Topic.
- eventgrid_
topic_ strsecondary_ access_ key - The secondary access key of the Event Grid Topic.
- dead_
letter_ strstorage_ secret - The storage secret of the dead-lettering, whose format is
https://<storageAccountname>.blob.core.windows.net/<containerName>?<SASToken>
. When an endpoint can't deliver an event within a certain time period or after trying to deliver the event a certain number of times, it can send the undelivered event to a storage account. - name str
- The name which should be used for this Digital Twins Eventgrid Endpoint. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- digital
Twins StringId - The resource ID of the Digital Twins Instance. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- eventgrid
Topic StringEndpoint - The endpoint of the Event Grid Topic.
- eventgrid
Topic StringPrimary Access Key - The primary access key of the Event Grid Topic.
- eventgrid
Topic StringSecondary Access Key - The secondary access key of the Event Grid Topic.
- dead
Letter StringStorage Secret - The storage secret of the dead-lettering, whose format is
https://<storageAccountname>.blob.core.windows.net/<containerName>?<SASToken>
. When an endpoint can't deliver an event within a certain time period or after trying to deliver the event a certain number of times, it can send the undelivered event to a storage account. - name String
- The name which should be used for this Digital Twins Eventgrid Endpoint. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the EndpointEventGrid 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 EndpointEventGrid Resource
Get an existing EndpointEventGrid 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?: EndpointEventGridState, opts?: CustomResourceOptions): EndpointEventGrid
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
dead_letter_storage_secret: Optional[str] = None,
digital_twins_id: Optional[str] = None,
eventgrid_topic_endpoint: Optional[str] = None,
eventgrid_topic_primary_access_key: Optional[str] = None,
eventgrid_topic_secondary_access_key: Optional[str] = None,
name: Optional[str] = None) -> EndpointEventGrid
func GetEndpointEventGrid(ctx *Context, name string, id IDInput, state *EndpointEventGridState, opts ...ResourceOption) (*EndpointEventGrid, error)
public static EndpointEventGrid Get(string name, Input<string> id, EndpointEventGridState? state, CustomResourceOptions? opts = null)
public static EndpointEventGrid get(String name, Output<String> id, EndpointEventGridState 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.
- Dead
Letter stringStorage Secret - The storage secret of the dead-lettering, whose format is
https://<storageAccountname>.blob.core.windows.net/<containerName>?<SASToken>
. When an endpoint can't deliver an event within a certain time period or after trying to deliver the event a certain number of times, it can send the undelivered event to a storage account. - Digital
Twins stringId - The resource ID of the Digital Twins Instance. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- Eventgrid
Topic stringEndpoint - The endpoint of the Event Grid Topic.
- Eventgrid
Topic stringPrimary Access Key - The primary access key of the Event Grid Topic.
- Eventgrid
Topic stringSecondary Access Key - The secondary access key of the Event Grid Topic.
- Name string
- The name which should be used for this Digital Twins Eventgrid Endpoint. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- Dead
Letter stringStorage Secret - The storage secret of the dead-lettering, whose format is
https://<storageAccountname>.blob.core.windows.net/<containerName>?<SASToken>
. When an endpoint can't deliver an event within a certain time period or after trying to deliver the event a certain number of times, it can send the undelivered event to a storage account. - Digital
Twins stringId - The resource ID of the Digital Twins Instance. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- Eventgrid
Topic stringEndpoint - The endpoint of the Event Grid Topic.
- Eventgrid
Topic stringPrimary Access Key - The primary access key of the Event Grid Topic.
- Eventgrid
Topic stringSecondary Access Key - The secondary access key of the Event Grid Topic.
- Name string
- The name which should be used for this Digital Twins Eventgrid Endpoint. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- dead
Letter StringStorage Secret - The storage secret of the dead-lettering, whose format is
https://<storageAccountname>.blob.core.windows.net/<containerName>?<SASToken>
. When an endpoint can't deliver an event within a certain time period or after trying to deliver the event a certain number of times, it can send the undelivered event to a storage account. - digital
Twins StringId - The resource ID of the Digital Twins Instance. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- eventgrid
Topic StringEndpoint - The endpoint of the Event Grid Topic.
- eventgrid
Topic StringPrimary Access Key - The primary access key of the Event Grid Topic.
- eventgrid
Topic StringSecondary Access Key - The secondary access key of the Event Grid Topic.
- name String
- The name which should be used for this Digital Twins Eventgrid Endpoint. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- dead
Letter stringStorage Secret - The storage secret of the dead-lettering, whose format is
https://<storageAccountname>.blob.core.windows.net/<containerName>?<SASToken>
. When an endpoint can't deliver an event within a certain time period or after trying to deliver the event a certain number of times, it can send the undelivered event to a storage account. - digital
Twins stringId - The resource ID of the Digital Twins Instance. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- eventgrid
Topic stringEndpoint - The endpoint of the Event Grid Topic.
- eventgrid
Topic stringPrimary Access Key - The primary access key of the Event Grid Topic.
- eventgrid
Topic stringSecondary Access Key - The secondary access key of the Event Grid Topic.
- name string
- The name which should be used for this Digital Twins Eventgrid Endpoint. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- dead_
letter_ strstorage_ secret - The storage secret of the dead-lettering, whose format is
https://<storageAccountname>.blob.core.windows.net/<containerName>?<SASToken>
. When an endpoint can't deliver an event within a certain time period or after trying to deliver the event a certain number of times, it can send the undelivered event to a storage account. - digital_
twins_ strid - The resource ID of the Digital Twins Instance. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- eventgrid_
topic_ strendpoint - The endpoint of the Event Grid Topic.
- eventgrid_
topic_ strprimary_ access_ key - The primary access key of the Event Grid Topic.
- eventgrid_
topic_ strsecondary_ access_ key - The secondary access key of the Event Grid Topic.
- name str
- The name which should be used for this Digital Twins Eventgrid Endpoint. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- dead
Letter StringStorage Secret - The storage secret of the dead-lettering, whose format is
https://<storageAccountname>.blob.core.windows.net/<containerName>?<SASToken>
. When an endpoint can't deliver an event within a certain time period or after trying to deliver the event a certain number of times, it can send the undelivered event to a storage account. - digital
Twins StringId - The resource ID of the Digital Twins Instance. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
- eventgrid
Topic StringEndpoint - The endpoint of the Event Grid Topic.
- eventgrid
Topic StringPrimary Access Key - The primary access key of the Event Grid Topic.
- eventgrid
Topic StringSecondary Access Key - The secondary access key of the Event Grid Topic.
- name String
- The name which should be used for this Digital Twins Eventgrid Endpoint. Changing this forces a new Digital Twins Eventgrid Endpoint to be created.
Import
Digital Twins Eventgrid Endpoints can be imported using the resource id
, e.g.
$ pulumi import azure:digitaltwins/endpointEventGrid:EndpointEventGrid example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.DigitalTwins/digitalTwinsInstances/dt1/endpoints/ep1
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.