This message was deleted.
# general
s
This message was deleted.
m
Did you tried to using StackReferences?
m
No, because I actually have to make changes in both subscriptions and one of them are not part of any stack. Probably a very edge case-ish thing?
m
Interessting. Maybe @limited-rainbow-51650 has some thoughts on this. I will check also internally with engineering about this.
l
@most-mouse-38002 are you talking about different Azure subscriptions? If so, this is a case where you create two explicit provider instances in your Pulumi program, each configured for a specific subscription. Once you have your two provider intances, you pass the first as the
provider
option to the firewall resource and the other to the vnet resource. https://www.pulumi.com/registry/packages/azure-native/api-docs/provider/#inputs
👍 1
m
I guess the confusion on my end is the lack of “SubscriptionId” in the struct. I was using the
azuread.NewProvider()
, this makes more sense. Thank you! 👍
👍🏼 1
Thank you both 🙂