important-leather-28796
02/19/2019, 9:15 PMindex.ts
, should this work:
import { Config } from '@pulumi/pulumi'
const config = new Config()
export const dbUser = config.require('dbUser')
with pulumi stack output dbUser
?
Currently I get error: current stack does not have output property 'dbUser'
gentle-diamond-70147
02/19/2019, 9:18 PMpulumi up
first to create the output.pulumi stack output
and pulumi stack output dbUser
should work.