有谁知道 MySQL 和 Postgres 的 RDS 加密是否在 boto3 代码中公开?
否则会有人知道这何时可用或解决方法?
非常感谢。
有谁知道 MySQL 和 Postgres 的 RDS 加密是否在 boto3 代码中公开?
否则会有人知道这何时可用或解决方法?
非常感谢。
创建 RDS 实例时,您可以指定StorageEncrypted
和KmsKeyId
参数来为您的数据库设置加密。例如:
import boto3
rds = boto3.client('rds')
response = rds.create_database(
DbInstanceIdentifier='mydatabase', AllocatedStorage=20,
DbInstanceClass='db.m1.medium', Engine='MySQL',
MasterUsername='dbadmin', MasterUserPassword='PASSWORD',
StorageEncrypted=True, KmsKeyId='KEYID')