In ARM templates, `Microsoft.Web/sites` and `Micro...
# azure
t
In ARM templates,
Microsoft.Web/sites
and
Microsoft.KeyVault/vaults/secrets
both have objects called
properties
. However, in AzureNextGen, they are not treated the same. In
WebApp
, the properties object disappears completely and all the sub-objects are brought up a level. However, in
Secret
(KeyVault), there is
SecretProperties
. Why are these treated differently? Could
SecretPropertiesArgs
just merge into
Secret
?
t
(ARM Templates ignore extensions)
t
Ah. Very cool. Thanks!