You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already)
Seems like microsoft has changed the way they respond with @odata.id when creating an application which is causing a downstream issue on the terraform azure AD plugin which in turn causes a problem in Pulumi
* Could not create application: json.Marshal(): json: error calling MarshalJSON for type msgraph.Application: json: error calling MarshalJSON for type *msgraph.Owners: marshaling Owners: encountered DirectoryObject with nil ODataId
Steps to reproduce
using Pulumi.AzureAD;
var appName = testaks;
var adApp = new Application(appName, new ApplicationArgs()
{
DisplayName = appName,
});
Expected: create an AzureAD application
Actual: * Could not create application: json.Marshal(): json: error calling MarshalJSON for type msgraph.Application: json: error calling MarshalJSON for type *msgraph.Owners: marshaling Owners: encountered DirectoryObject with nil ODataId
The text was updated successfully, but these errors were encountered:
Howdy
Seems like microsoft has changed the way they respond with @odata.id when creating an application which is causing a downstream issue on the terraform azure AD plugin which in turn causes a problem in Pulumi
https://issueexplorer.com/issue/hashicorp/terraform-provider-azuread/588
Steps to reproduce
Expected: create an AzureAD application
Actual: * Could not create application: json.Marshal(): json: error calling MarshalJSON for type msgraph.Application: json: error calling MarshalJSON for type *msgraph.Owners: marshaling Owners: encountered DirectoryObject with nil ODataId
The text was updated successfully, but these errors were encountered: