sticky-answer-6826
05/16/2022, 9:52 PMpulumi config set aws:allowedAccountIds [0000000]
but I get an error of “zsh: no matches found: [000000]”
pulumi config set aws:allowedAccountIds 000000
works but adds it as a value.little-cartoon-10569
05/16/2022, 10:01 PMpulumi config set aws:allowedAccountIds[0] xyz
... might be worth a shot?sticky-answer-6826
05/16/2022, 10:02 PMlittle-cartoon-10569
05/16/2022, 10:21 PM--path
option to tell it that there's an index in the key.
pulumi config set --path 'delete[0]' me
Flags:
-h, --help help for set
--path The key contains a path to a property in a map or list to set
--plaintext Save the value as plaintext (unencrypted)
--secret Encrypt the value instead of storing it in plaintext
pulumi config set
, I always edit the file...sticky-answer-6826
05/16/2022, 10:28 PM—-path
flag and it didn't work. I noticed your quotes ‘’
around the index just now, and lo and behold…it worked.
Haha thanks!little-cartoon-10569
05/16/2022, 10:37 PM[
sticky-answer-6826
05/17/2022, 12:01 AM