Pulumi still suggesting the change on RDS Paramete...
# aws
g
Pulumi still suggesting the change on RDS ParameterGroup. My engine is PostgreSQL from
"applyMethod": "pending-reboot"
to `"applyMethod": "immediate" The affected parameter is
timezone
which I create like this:
Copy code
{"name": "timezone", "value": "UTC"},
And according to docs the default
applyMethod
value is set to
immediate
. So the questions are: 1) What did set
applyMethod
to
pending-reboot
? 2) Why does pulumi try to change the value every time? (I'd say it may be coming from the provider) 3) And where can I find which parameters require reboot?