Amazon Relational Database Service (RDS) allows to easily host and manage a relational database in the cloud. RDS databases can be encrypted, ensuring the security of data-at-rest. In the case that adversaries gain physical access to the storage medium they are not able to access the data.
There is a risk if you answered yes to any of those questions.
It’s recommended to encrypt databases that contain sensitive information. Encryption and decryption are handled transparently by RDS, so no further modifications to the application are necessary.
For AWS::RDS::DBInstance:
AWSTemplateFormatVersion: '2010-09-09'
Resources:
DatabaseInstance:
Type: AWS::RDS::DBInstance
Properties:
StorageEncrypted: false # Sensitive, disabled by default
For AWS::RDS::DBInstance:
AWSTemplateFormatVersion: '2010-09-09'
Resources:
DatabaseInstance:
Type: AWS::RDS::DBInstance
Properties:
StorageEncrypted: true