This message was deleted.
# general
s
This message was deleted.
b
@full-artist-27215 I think you're looking for the
pulumi config set-all
command?
f
Unless I'm mistaken, that seems like it would require me to still iterate through my original object and specify each individual value as an argument, rather than passing one "object" at once.
🤔 Actually, I think I can use this
jq
to parse out what I need to pass to `pulumi`:
Copy code
jq '. as $in 
| reduce leaf_paths as $path (
    {};
    . + { ($path | map(tostring) | join(".")): $in | getpath($path) }
)
b
yeah we can definitely improve here and have plans to, but that should get you where you need to go
f
cool, thanks @billowy-army-68599