damp-honey-93158
05/17/2022, 2:35 PMvar app = new Application($"{Deployment.Instance.StackName}-app", new ApplicationArgs
{
DisplayName = $"{Deployment.Instance.StackName}-cicd",
Owners = { current.Apply(c => c.ObjectId), },
SignInAudience = "AzureADMultipleOrgs"
}, new CustomResourceOptions()
{
IgnoreChanges = {
"Owners"
}
});
I thought the above "IgnoreChanges" might be the key, but I suspect I am using that incorrectly in this case. Tips appreciated.