icy-controller-6092
03/14/2025, 1:10 AMimport chart from './postgres-chart.js'
const provider = new postgres.Provider('pg-provider', {
host: chart.service.name, ...
})
const role = new postgres.Role(..., { provider })
it's a bit clunky in practice, and you can easily mess up your program if you forget to add the provider
option. Ideally you should be able to program the provider config during program executionmelodic-tomato-39005
03/14/2025, 12:55 PMyou can easily mess up your program if you forget to add theYou can avoid this via https://www.pulumi.com/blog/disable-default-providers/optionprovider
little-cartoon-10569
03/16/2025, 6:54 PM