Azure recently released sidecars for azure web app...
# general
l
Azure recently released sidecars for azure web apps. I am trying to figure out how to create a template with a main container that is continously deployed on github as well as an open telemetry container as a sidecar. I can't translate the ARM template well with Pulumi and need some help.
a
You'd have to create a WebApp • Set the
site_config.linux_fx_version
to
sitecontainers
And then create 1 or more WebAppSiteContainers • Setting the
properties.is_main
parameter to
true
or
false
depending on whether the specific container is the main application or a sidecar
l
Hi yeah exactly that i read through the arm template from a an example i created in azure portal then replicated it in pulumi
arm templates can be a bit hard to read.