Reference a non-sensitive value stored in SSM Parameter Store (free tier) — e.g. a feature flag, a custom domain, a connection ARN.
Logical name (e.g. 'FEATURE_FLAGS'). Set the value out-of-band with config set <key> and read it at runtime with getConfig('<key>').
'FEATURE_FLAGS'
config set <key>
getConfig('<key>')
Optional
A ConfigValue marker.
environment: { FEATURE_FLAGS: config('FEATURE_FLAGS') } // → SSM Parameter Storeconst flags = await getConfig('FEATURE_FLAGS'); Copy
environment: { FEATURE_FLAGS: config('FEATURE_FLAGS') } // → SSM Parameter Storeconst flags = await getConfig('FEATURE_FLAGS');
Reference a non-sensitive value stored in SSM Parameter Store (free tier) — e.g. a feature flag, a custom domain, a connection ARN.