This message was deleted.
# azure
s
This message was deleted.
t
yeah, I think table management isn’t implemented in ARM
b
too bad 😕 guess the only way around this is by creating the tables and ingest manual?
t
You could try to create them with Azure SDK from your Pulumi program
b
I'm not certain that I understand what you mean
do you mean with a callback on the namespace, and then calling an external program?
with the external program being a nodejs app that uses the sdk ?
t
You can install the Azure SDK to the same program and call it directly
b
true 🙂 that might work; what would be the prefered way to trigger the azure sdk script in such a way that it runs after the cluster and hubs are made, but before pulumi tries to make the evenhubconnection ?
t
Which language are you using?
b
typescript
t
Then it’s best to make a dynamic provider
b
that sounds rather complex for my problem 😕 do you know whether there's somewhere an example of this kind of pattern?
t
You could call the Azure SDK from an
apply
callback but then it would be called on every
pulumi up
. A dynamic provider integrates nicely into the resource lifecycle and CLI.
b
cool, thnx! I'll try to get it working tomorrow 🙂