full-boots-69133
03/13/2025, 6:20 AMpulumiConfig
section and we end up with our config values nested which breaks the next deployment.red-match-15116
03/13/2025, 6:22 AMfull-boots-69133
03/13/2025, 6:30 AMpulumiConfig
and the table view will convert those keys into YAML mappings. eg (trivial example):
values:
my-app:
db-password:
fn::secret:
ciphertext: some-ciphertext
pulumiConfig:
pendula.app.my-app:db-password: ${my-app.db-password}
will get turned into:
values:
my-app:
db-password:
fn::secret:
ciphertext: some-new-ciphertext
pulumiConfig:
pendula:
app:
my-app:db-password: ${my-app.db-password}
and then we wonder who unset db-password the app (and probably all the other variables)full-boots-69133
03/13/2025, 6:30 AMfull-boots-69133
03/13/2025, 6:39 AM