Rob N
03/28/2022, 9:50 PM/stacks/index.ts
app.setDefaultFunctionProps({
runtime: lambda.Runtime.NODEJS_14_X,
environment: {
SSM_PREFIX: `/${ssmStage}/`,
SSM_SHARED_PREFIX: `/${ssmStage}/shared/`,
},
});
Looking to access the SSM_PREFIX
in stack definitions, or should I be just passing them in via props?Ross Gerbasi
03/28/2022, 11:11 PMdefaultFunctionProps
so I am guessing even if you could get them you would end up in the any
bucket or typing them again anyway 😕Rob N
03/28/2022, 11:17 PMRoss Gerbasi
03/28/2022, 11:19 PMKristian Lake
03/30/2022, 2:03 PM