This message was deleted.
# typescript
s
This message was deleted.
f
This was caused by a
FileAsset
I have no idea why. I commented out the specific code, ran
pulumi up
, put it inn again and another
pulumi up
and it worked again. Lets see how long it lasts this time... 🤷‍♂️🤦‍♂️
e
per chance have you ran a
pulumi refresh
recently? I think I've seen cases of providers breaking the state of assets on refresh
f
yeah we run refresh before each deploy in ci cd which may screw up the state, removing it and adding it works...
e
If you can open an issue against which ever resource provider that's using that FileAsset that would help. It's almost certainly a bug in the providers refresh method. But we need to know which provider to go look at to fix it.
f
I guess you are after
azure-native
?
thats the npm package we use
I saw somebody else having the "same" problem but with a different Asset
e
That works, thanks
👍 1
i
For posterity, this does seem to be azure-native specific relating to the Blob resource after a
pulumi refresh.
Workaround is to comment out the blob,
pulumi up
, then restore the blob.
110 Views