I also noticed this pattern ```const stackConfig = new pulumi.Config(); const localConfig = { ce...
f
I also noticed this pattern
Copy code
const stackConfig = new pulumi.Config();
const localConfig = {
    certificateArn: stackConfig.get("certificateArn"),
}

localConfig.certificateArn = ....
Does that mean that the certificateArn is written as a config, or just assigned locally to that localConfig variable?