Reputation: 895
Today I saw something really strange with my azure web site. My site was originally deployed using an ARM Template that configured various application settings.
After the initial deploy one of the settings was manually changed via the portal. Today that setting was reverted back to the original value used in the template.
Should that even be possible? I checked audit/activity logs to see if anyone changed it, and the audit logs are empty.
What is going on here, anyone have an idea?
Upvotes: 0
Views: 154
Reputation: 43183
That should not be happening. Azure will never automatically redeploy your ARM template.
Some possibilities that could have led to this:
I'd suggest applying you setting change again, and making sure that it is in fact applied. It should not get reverted by magic.
Upvotes: 1