bicep - we can specify different API to use for different resources

 we can specify which api version to use in our bicep file and it would still work with an existing resources. 

For example, if I create my Azure service bus resources using, Microsoft.ServiceBus/namespaces/queues@2022-01-01-preview, i would still be able to change/update using a different API version for example, Microsoft.ServiceBus/namespaces/queues@2022-10-01-preview. These API are real and not made up. 

On top of that, we can even use different API for resources in a bicep file. 

For example, service bus namespace uses Microsoft.ServiceBus/namespaces/queues@2022-01-01-preview, which queue uses Microsoft.ServiceBus/namespaces/queues@2022-10-01-preview - We still able to get it to work.


Comments

Popular posts from this blog

The specified initialization vector (IV) does not match the block size for this algorithm