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
Copy file name to clipboardExpand all lines: main.tf
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -100,7 +100,7 @@ data "aws_rds_reserved_instance_offering" "default" {
100
100
count=local.use_reserved_instances?1:0
101
101
db_instance_class=var.instance_type
102
102
duration=var.rds_ri_duration
103
-
multi_az=local.cluster_instance_count>1
103
+
multi_az=startswith(local.reserved_instance_engine, "aurora") ?false: local.cluster_instance_count>1# Aurora options never available for multi AZ for Reserved Instances. Single Reserved Instances rates still apply. https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithReservedDBInstances.html
0 commit comments