Thomas Kappler
Thomas Kappler
I'm sorry we couldn't find a solution yet. I was able to confirm that with a minimal pulumi-azuread program, no azure native involved, everything works fine without a subscription id...
Adding azure-native to the azuread program, everything still works. The complete program is ```go package main import ( "github.com/pulumi/pulumi-azure-native-sdk/resources/v2" azad "github.com/pulumi/pulumi-azuread/sdk/v5/go/azuread" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error {...
Since the upstream provider doesn't support subscriptions and the issue with the azure-native interaction couldn't be reproduced, I'll close this issue. Feel free to re-open if necessary.
Hi @lukaskabrt, thank you for reporting this. This behavior is expected but unfortunately we failed to document it in this case. The problem is that application identifier URIs can be...
Hi @lukaskabrt, it looks like I made a small mistake in my code snippet. It should be `{ IgnoreChanges = { "identifierUris" } }` (camelCase identifier). Could you try again...
This deprecation warning is not printed anymore with the latest pulumi-azuread v6. ```shell $ cat __main__.py import pulumi import pulumi_azuread sp = pulumi_azuread.get_service_principal(display_name="Microsoft Graph") pulumi.export('sp', sp.id) $ grep azuread pyproject.toml...