This message was deleted.
# general
s
This message was deleted.
e
🤦‍♂️ So that's not really an error, just a warning but this prompted me to go look at the code because and see that src and dst are the wrong way round to the copy call. Not sure about the azure:WebApp. Someone with azure experience might know how to work that out.
o
Thx @echoing-dinner-19531! That means, the warning message saying that there is an error copying the blob is actually an internal pulumi problem and most probably unrelated to the error I get when trying to create my webapp. At least it helps me to not focus to much in searching the problem in pulumi state blob storage. Still some hint how to better troubleshoot the web app issue would be great. 🆘
e
Yup the fix for that will be in the next release. You could try turning on debug logging, not sure it will print anything useful but worth a try, add
-v9 --logflow --logtostderr
to your pulumi command
1
o
The detailed logging gave me the missing hint. The error was due to already existing WebApp.name.
🙌 1