gpt4 book ai didi

aws-cloudformation - DBCluster 中的 Cloudformation 引用安全组

转载 作者:行者123 更新时间:2023-12-05 03:03:37 25 4
gpt4 key购买 nike

我正在使用 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

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#w2ab1c21c10d102d104c13

关于aws-cloudformation - DBCluster 中的 Cloudformation 引用安全组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53642473/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com