Skip to content

Commit

Permalink
Merge pull request hashicorp#20926 from bkez322/b-rds_replicas_enhanc…
Browse files Browse the repository at this point in the history
…ed_monitoring

Bug Fix: Failure to create RDS replicas with 'enhanced-monitoring' if source already exists
  • Loading branch information
ewbankkit authored Aug 10, 2022
2 parents dd89104 + 5eb7124 commit 6f0dbca
Show file tree
Hide file tree
Showing 10 changed files with 2,811 additions and 3,326 deletions.
7 changes: 7 additions & 0 deletions .changelog/20926.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
```release-note:bug
resource/aws_db_instance: Add retries (for handling IAM eventual consistency) when creating database replicas that use enhanced monitoring
```

```release-note:bug
resource/aws_db_instance: Apply `monitoring_interval` and `monitoring_role_arn` when creating via `restore_to_point_in_time`
```
4 changes: 2 additions & 2 deletions internal/service/rds/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ func ResourceCluster() *schema.Resource {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Default: EngineAurora,
ValidateFunc: validEngine(),
Default: ClusterEngineAurora,
ValidateFunc: validClusterEngine(),
},
"engine_mode": {
Type: schema.TypeString,
Expand Down
Loading

0 comments on commit 6f0dbca

Please sign in to comment.