我可以通过 cloudformation 启用 Redshift 跨区域快照复制吗?
Can I enable Redshift cross region snapshot copy through cloudformation?
Redshift CFN resource AWS::Redshift::Cluster
有两个配置跨区域快照复制的属性:DestinationRegion
和SnapshotCopyGrantName
。但在使用这些参数创建堆栈后,我发现跨区域快照副本仍处于禁用状态。我错过了什么吗?
这还不受支持,但已经在路线图上:AWS::Redshift::SnapshotConfiguration。
现在您必须使用 custom resource in the form of a lambda function which would use AWS SDK's enable_snapshot_copy to enable the snapshot copies. You could also use AWSUtility::CloudFormation::CommandRunner 通过 AWS CLI 启用它。
Redshift CFN resource AWS::Redshift::Cluster
有两个配置跨区域快照复制的属性:DestinationRegion
和SnapshotCopyGrantName
。但在使用这些参数创建堆栈后,我发现跨区域快照副本仍处于禁用状态。我错过了什么吗?
这还不受支持,但已经在路线图上:AWS::Redshift::SnapshotConfiguration。
现在您必须使用 custom resource in the form of a lambda function which would use AWS SDK's enable_snapshot_copy to enable the snapshot copies. You could also use AWSUtility::CloudFormation::CommandRunner 通过 AWS CLI 启用它。