Is it an expected that change in pulumi config doe...
# general
g
Is it an expected that change in pulumi config does not trigger a diff? If I set the value
pulumi config set my_val 1234
then do
pulumi up
- Pulumi reports 0 changes in the state
b
I think it depends on your code logic, whether this config would trigger the actual change or not
b
a config change won't trigger any change in your stack unless the config value has been used in a resource
g
gotcha, thank you!