This message was deleted.
# azure
s
This message was deleted.
t
m
@tall-librarian-49374 yes, that helped. What a shame ;)
I needed this more than once, so i came up with a helper.
Copy code
function principalId(appService: AppService): Output<string> {
    // Work around a preview issue <https://github.com/pulumi/pulumi-azure/issues/192>
    return appService.identity.principalId.apply(id => id || '11111111-1111-1111-1111-111111111111');
}