mirror of https://github.com/pulumi/pulumi.git
12 lines
322 B
TypeScript
12 lines
322 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
|
|
import * as azure_native from "@pulumi/azure-native";
|
|
|
|
const example = new azure_native.eventgrid.EventSubscription("example", {
|
|
destination: {
|
|
endpointType: "EventHub",
|
|
resourceId: "example",
|
|
},
|
|
expirationTimeUtc: "example",
|
|
scope: "example",
|
|
});
|