Hi all - quick question I'm trying to import some ...
# general
t
Hi all - quick question I'm trying to import some Azure Native resources by ID, specifically a VNet right now. The Subnets are throwing up some mismatches which are mostly erroneous (saying it needs to update e.g. RouteTable but the IDs are identical). My main query is though how do I ignore properties that sit below an array? I can use
ignoreChanges
to set individual elements e.g.
"subnets[0].routeTable"
but I want to do it for all with some syntax like
"subnets[*].routeTable"
. I've tried a few combos like [] and [*] or no brackets at all, but no luck so far. What have I missed?