Skip to content

Commit fd1d702

Browse files
authored
Merge pull request #951 from apgrucza/fix/cannot-start-db-cluster-without-creds
fix(rds-instances): do not start cluster if credentials are inaccessible
2 parents 41be532 + 1a82f92 commit fd1d702

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

resources/rds-instances.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ func (i *RDSInstance) Remove(_ context.Context) error {
109109
return err
110110
}
111111
switch status {
112-
case "stopped", "inaccessible-encryption-credentials-recoverable":
112+
case "stopped":
113113
_, err := i.svc.StartDBCluster(&rds.StartDBClusterInput{
114114
DBClusterIdentifier: i.instance.DBClusterIdentifier,
115115
})

0 commit comments

Comments
 (0)