CompositionalIT / farmer

Repeatable Azure deployments with ARM templates - made easy!
https://compositionalit.github.io/farmer
MIT License
517 stars 156 forks source link

Add Support to P0V3 service plan #1062

Closed MarcoGix closed 10 months ago

MarcoGix commented 10 months ago

Hi all,

could you please add support for WEbApp service plan P0V3?

On type SKU | Premium0V3 of string static member P3V3 = Premium0V3 "P0v3"

Thanks!

martinbryant commented 10 months ago

Hi @MarcoGix - hopefully using the following will achieve what you need

let webApp = webApp { name "web" sku (WebApp.Sku.PremiumV3 "P0v3") }

Screenshot 2023-09-08 at 11 40 09

MarcoGix commented 10 months ago

Hi @martinbryant and thanks!

I saw that approach before opening the issue but I found a difference beetwen PremiumV3 - Premium0V3

So I was thinking they were different and not yet supported. Deployed worked tahnks!