For importing resources (Azure AD App) into existi...
# general
g
For importing resources (Azure AD App) into existing stack,
CustomResourceOptions
specifies "_The inputs to the resource's constructor must align with the resource's current state_". A discrepancy here causes
error: inputs to import do not match the existing resource
. To achieve my goal, I need my Pulumi program to be the source of truth, applying and overriding any discrepancy that may exist. Can this be done through Pulumi at all, or would I have to for example use the MS Graph API to update the AD App before importing it? Thus avoiding the
do not match
. Thank you ❤️