You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: remove serverFarmId casing replace that causes perpetual plan diff (#132)
The resource_id output was using replace() to convert Azure's returned
'serverfarms' (lowercase) to 'serverFarms' (uppercase F). This caused
perpetual drift for azapi consumers: Azure normalizes the ID back to
lowercase on read, so every plan showed a diff.
Remove the replace() and output the ID as Azure returns it. This was
originally added for issue #129 (azurerm provider ID parsing), but that
is a provider limitation that consumers can handle with their own
replace() if needed.
Closes#131
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
0 commit comments