- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 cloudformation 创建一个包含两个数据库实例的数据库集群。
为此我能够创建
DBSecGroup:
类型:AWS::EC2::SecurityGroup
然后我需要在属性 VpcSecurityGroupIds 中引用它。
DBCluster:
类型:“AWS::RDS::DBCluster”
VpcSecurityGroupIds:?
VpcSecurityGroupIds 需要列表。不知道如何才能做到这一点。
最佳答案
尝试以下两种之一:
DBCluster:
Type: AWS::RDS::DBCluster
Properties:
VpcSecurityGroupIds:
- !GetAtt DBSecGroup.GroupId
DBCluster:
Type: AWS::RDS::DBCluster
Properties:
VpcSecurityGroupIds:
- !Ref DBSecGroup
关于aws-cloudformation - DBCluster 中的 Cloudformation 引用安全组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53642473/
我正在使用 cloudformation 创建一个包含两个数据库实例的数据库集群。 为此我能够创建 DBSecGroup: 类型:AWS::EC2::SecurityGroup 然后我需要在属性 Vp
我将路由 53 添加到 DBCluster 并不断遇到错误:Attribute: ReadEndpoint.Address was not found for resource: 整个堆栈是通过cl
我正在尝试使用 cloudformation 模板为 postgres 创建 RDS 数据库集群。 我收到此错误,其中指出:“给定的输入与预期格式不匹配”。 我摸不着头脑,无法弄清楚我的 clou
我想使用 serverless-vpc-plugin 创建一个包含 DBCluster 的 VPC。如果我分两步进行,首先是 VPC,然后是集群,那么一切都会正常。但如果我同时执行此操作,无服务器会失
我正在使用 cloudformation,并遇到了无法解决的 DBSubnetGroup 问题。我的目标是构建一个简单的设置: 具有两个子网的 VPC 这些子网上的 RDS 数据库子网组 该数据库子网
AWS docs for DeletionPolicy提及数据库集群的默认策略: For AWS::RDS::DBCluster resources, the default policy is Sn
创建 AWS::RDS::DBCluster 时(Aurora-Serverless)在AWS CloudFormation中,有一个属性MasterUserPassword其输入指定为 string
我是一名优秀的程序员,十分优秀!