【发布时间】:2021-03-14 13:38:56
【问题描述】:
我正在尝试使用 cloudformation 脚本创建胶水安全配置,但出现以下错误: 属性验证失败:[属性值 {/EncryptionConfiguration/S3Encryptions} 与类型 {Array} 不匹配]
进行 S3 加密的正确方法是什么?
AWSTemplateFormatVersion: 2010-09-09
Description: Script creates resources for GlueSecurityConfiguration
Resources:
GlueSecurityConfiguration:
Type: AWS::Glue::SecurityConfiguration
Properties:
EncryptionConfiguration:
S3Encryptions:
KmsKeyArn: !Ref KMSArn
S3EncryptionMode: SSE-KMS
JobBookmarksEncryption:
KmsKeyArn: !Ref KMSArn
CloudWatchEncryption:
KmsKeyArn: !Ref KMSArn
Name: !Sub '${SystemValue}-${SubSystemValue}'
【问题讨论】:
标签: amazon-web-services amazon-s3 yaml amazon-cloudformation aws-glue