Hello I have an aurora setup through Pulumi. When ...
# aws
m
Hello I have an aurora setup through Pulumi. When I make modifications to the file, and then do
pulumi up
the first try always fail with the following error but the second try work just fine. Any idea why would that happen?
Copy code
* updating RDS Cluster Instance (_): operation error RDS: ModifyDBInstance, https response error Stat
usCode: 400, RequestID: _, api error InvalidParameterCombination: MonitoringInterval conflicts with cl
uster level parameter.
l
Do you set one of those two parameters, but not the other? My guess is that RDS sets one of them to a default value which causes the error message, then fixes it, and it stays fixed. Once it's in the right state, I would do a
pulumi refresh --diff --preview-only
to figure out what the value is (check for cluster level and monitoring interval), then in your code, explicitly set the value to that.