brave-cartoon-40872
07/25/2024, 10:54 PMpulumi config set <key> true
, I would expect my configuration file to show key: true
. Instead, I get key: "true"
, which is a string value, not a boolean one. Is this behavior intentional? Am I misunderstanding something about how Pulumi configuration works?little-cartoon-10569
07/25/2024, 11:00 PMtrue
.
You can edit the config file and remove the quotes, if you want.brave-cartoon-40872
07/25/2024, 11:15 PMpulumi config set --path 'namespace.fake' true
results in
project:namespace:
fake: true
future-hairdresser-70637
07/25/2024, 11:21 PMbrave-cartoon-40872
07/25/2024, 11:22 PM