This message was deleted.
# azure
s
This message was deleted.
b
You can normally pass Outputs as Inputs, the error you’re getting is with the inner type conversion since on the Output side it might be undefined. You might be able to do something like this if you’re okay with moving that condition out to the read-only property itself:
Copy code
readonly identity?: pulumi.Output<outputs.web.ManagedServiceIdentityResponse>;
though you’ll probably want logic to deal with what happens if its not actually provided wherever this is being used.
b
thank you, that definitely makes sense to me. but this is the
azure-native
package, which I can't update. with that, what can I do to work it around?