gpt4 book ai didi

amazon-web-services - 使用 AWS CloudFormation 创建 DBSubnetGroup

转载 作者:行者123 更新时间:2023-12-04 08:15:26 24 4
gpt4 key购买 nike

我正在使用 ECS-CLI (0.4.5) 启动 CFN 模板,现在我尝试将 Aurora 集群放入 CFN 模板中,并通过 CFN SDK 使用变更集更新堆栈。

我不明白为什么它对我的子网感到不安。子网是由初始“ecs-cli up”调用创建的。它们与堆栈的其余部分位于同一 vpc 中,在我尝试部署变更集之前它们已经存在,并且它们位于不同的可用区(us-west-2b 和 us-west-2c)。

CFN 给我的唯一信息是“某些输入子网无效”。

CFN 故障: CFN Failure

子网: Subnets

我可以通过管理控制台创建具有完全相同子网的 DBSubnetGroup,没有任何问题。

对于可能出现的问题有什么想法吗?这是 CloudFormation 中的错误吗?让我知道是否需要更多信息来解决这个问题......老实说我很茫然

这就是我的初始模板(它内置于 ecs-cli 中):

 "PubSubnetAz1": {
"Type": "AWS::EC2::Subnet",
"Properties": {
"VpcId": {
"Ref": "Vpc"
},
"CidrBlock": "10.0.0.0/24",
"AvailabilityZone": "us-west-2b"
}
},
"PubSubnetAz2": {
"Type": "AWS::EC2::Subnet",
"Properties": {
"VpcId": {
"Ref": "Vpc"
},
"CidrBlock": "10.0.1.0/24",
"AvailabilityZone": "us-west-2c"
}
},
"InternetGateway": {
"Type": "AWS::EC2::InternetGateway"
},
"AttachGateway": {
"Type": "AWS::EC2::VPCGatewayAttachment",
"Properties": {
"VpcId": {
"Ref": "Vpc"
},
"InternetGatewayId": {
"Ref": "InternetGateway"
}
}
},
"RouteViaIgw": {
"Type": "AWS::EC2::RouteTable",
"Properties": {
"VpcId": {
"Ref": "Vpc"
}
}
},
"PublicRouteViaIgw": {
"DependsOn": "AttachGateway",
"Type": "AWS::EC2::Route",
"Properties": {
"RouteTableId": {
"Ref": "RouteViaIgw"
},
"DestinationCidrBlock": "0.0.0.0/0",
"GatewayId": {
"Ref": "InternetGateway"
}
}
},
"PubSubnet1RouteTableAssociation": {
"Type": "AWS::EC2::SubnetRouteTableAssociation",
"Properties": {
"SubnetId": {
"Ref": "PubSubnetAz1"
},
"RouteTableId": {
"Ref": "RouteViaIgw"
}
}
},
"PubSubnet2RouteTableAssociation": {
"Type": "AWS::EC2::SubnetRouteTableAssociation",
"Properties": {
"SubnetId": {
"Ref": "PubSubnetAz2"
},
"RouteTableId": {
"Ref": "RouteViaIgw"
}
}
},

然后当我去更新它时,我添加以下内容:

"DBSubnetGroup": {
"Type": "AWS::RDS::DBSubnetGroup",
"Properties": {
"DBSubnetGroupDescription": "Aurora Subnet Group using subnets from 2 AZs",
"SubnetIds": {
"Fn::Join": [
",", [{
"Ref": "pubSubnetAz1"
},
{
"Ref": "pubSubnetAz2"
}
]
]
}]
}
}
}

变更集应该足够简单......

"Changes": [
{
"Type": "Resource",
"ResourceChange": {
"Action": "Add",
"LogicalResourceId": "DBSubnetGroup",
"ResourceType": "AWS::RDS::DBSubnetGroup",
"Scope": [],
"Details": []
}
}
]

我使用的是 AWSTemplateFormatVersion 2010-09-09 和 JavaScript aws-sdk“^2.7.21”

最佳答案

问题在于您将子网 ID 连接成一个字符串。相反,您应该将它们传递到数组中。试试这个:

  "PrivateSubnetGroup": {
"Type": "AWS::RDS::DBSubnetGroup",
"Properties": {
"SubnetIds": [
{
"Ref": "PubSubnetAz1"
},
{
"Ref": "PubSubnetAz2"
}
],
"DBSubnetGroupDescription": "Aurora Subnet Group using subnets from 2 AZs"
}
}

此外,我强烈建议尝试使用 yaml 而不是 json。 Cloudformation 现在原生支持此功能,并提供一些快捷函数,使引用更容易使用,我认为从长远来看,您会发现它更易于阅读和编写。

下面是如何在 yaml 中编写等效 json 的示例:

PrivateSubnetGroup:
Type: AWS::RDS::DBSubnetGroup
Properties:
DBSubnetGroupDescription: Subnet group for Aurora Database
SubnetIds:
- !Ref PubSubnetAz1
- !Ref PubSubnetAz2

关于amazon-web-services - 使用 AWS CloudFormation 创建 DBSubnetGroup,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41729715/

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