You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like the default functionality of this module is to specify a value for monitoring_role_arn on the aws_db_instance resource, and set the monitoring_interval to 0.
According to this Terraform error I received, the default functionality of this module may be broken:
Error: Error applying plan:
1 error(s) occurred:
* module.database.aws_db_instance.postgresql: 1 error(s) occurred:
* aws_db_instance.postgresql: Error creating DB Instance: InvalidParameterCombination: You must specify a MonitoringInterval value other than 0 when you specify a MonitoringRoleARN value.
status code: 400, request id: d996bf5a-c269-4548-87ec-6b3676b7a9aa
The text was updated successfully, but these errors were encountered:
Interesting. Pretty sure we tested this case when the feature was added. Either way, I think the goal in a fix would be to try and preserve the ability to set monitoring_interval = 0, if possible.
It looks like the default functionality of this module is to specify a value for
monitoring_role_arn
on theaws_db_instance
resource, and set themonitoring_interval
to0
.According to this Terraform error I received, the default functionality of this module may be broken:
The text was updated successfully, but these errors were encountered: