Reputation: 1481
I'm trying to check the existence of resources throughout my subscription, but it seems like 50% of the resources expect a different apiVersion
to the others.
I find it weird that Azure isn't consistent across the board with their apiVersions, but does anyone have or know of a list of the resource providers "api versions" that are current accurate and up to date?
Upvotes: 1
Views: 126
Reputation: 6856
The only truely reliable place I have found is the arm schemas in github:
https://github.com/Azure/azure-resource-manager-schemas
I clone the repo then do a findstr or similar to find whatever the latest folder is.
Ed
Upvotes: 1