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
{{ message }}
This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
As an RDS user
I'd like to get io1 or gp2 disks depending on if iops is declared
So that I don't use slow spinning disks
Current:
When StorageType is not set, and iops == 0, magnetic disks are provisioned
Expected:
When StorageType is not set, and iops == 0, gp2 SSD disks are provisioned
I'm guessing this is RDS default behavior for Ref("AWS::NoValue") I'd recommend using something like StorageType = variables['StorageType'] or 'io1' if get_piops() > 0 else 'gp2'
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
As an RDS user
I'd like to get io1 or gp2 disks depending on if iops is declared
So that I don't use slow spinning disks
Current:
When StorageType is not set, and iops == 0, magnetic disks are provisioned
Expected:
When StorageType is not set, and iops == 0, gp2 SSD disks are provisioned
I'm guessing this is RDS default behavior for Ref("AWS::NoValue") I'd recommend using something like StorageType = variables['StorageType'] or 'io1' if get_piops() > 0 else 'gp2'
The text was updated successfully, but these errors were encountered: