Does anyone know how to create an array of maps using Pulumi config set-all?
For example,
pulumi config set-all --path --plaintext '["parent.name"].["nested.name"]'=value
Will set:
parent.name:
nested.name: value
But I am looking for:
parent.name:
-nested.name: value
-nested.name: value2
I tried:
pulumi config set-all --path --plaintext '["parent.name"][0].["nested.name"]'=value
but no luck