This message was deleted.
# azure
s
This message was deleted.
t
Is that a topic rule, not a namespace one?
f
Hmm, I see you created the rules yourself:
Copy code
const sendEventSourceKey = new eventhub.EventHubAuthorizationRule("send", {
    resourceGroupName: resourceGroupName,
    namespaceName: eventHubNamespace.name,
    eventHubName: eventHub.name,
    authorizationRuleName: "send",
    rights: ["send"],
}, { parent: eventHub });
The one I'm trying to access is the default namespace SAS Policy. Here what I see from the ARM template:
Copy code
{
    "type": "Microsoft.ServiceBus/namespaces/AuthorizationRules",
    "apiVersion": "2017-04-01",
    "name": "[concat(parameters('namespaces_mynamespace_name'), '/RootManageSharedAccessKey')]",
    "location": "Australia East",
    "dependsOn": [
        "[resourceId('Microsoft.ServiceBus/namespaces', parameters('namespaces_mynamespace_name'))]"
    ],
    "properties": {
        "rights": [
            "Listen",
            "Manage",
            "Send"
        ]
    }
},
oh, I'm searching for
Topic
key. Duh. My bad, thanks
You guys don't sell ducks with the Pulumi logo on it by any chance? 🙂 🦆
t
😁