`eb deploy` 错误 "Default subnet not found in us-west-2d"

`eb deploy` errors out with "Default subnet not found in us-west-2d"

我的应用程序已在 Elastic Beanstalk 中运行多年,现在,在尝试部署时,我突然出现以下错误:

Upload Complete.
2019-04-30 22:44:21    INFO    Environment update is starting.
2019-04-30 22:44:44    ERROR   Service:AmazonCloudFormation, Message:Stack named 'awseb-e-2etmaatfsm-stack' aborted operation. Current state: 'UPDATE_ROLLBACK_IN_PROGRESS'  Reason: The following resource(s) failed to update: [AWSEBLoadBalancer].
2019-04-30 22:44:44    ERROR   Updating load balancer named: awseb-e-2-AWSEBLoa-13E02TCAOUR85 failed Reason: Default subnet not found in us-west-2d (Service: AmazonElasticLoadBalancing; Status Code: 400; Error Code: ValidationError; Request ID: 8873a7c6-6b99-11e9-8d65-737139191d2f)
2019-04-30 22:44:44    ERROR   Failed to deploy application.

我一直在us-west-2,从来没有遇到过这样的事情。这似乎是一个新的 AZ,也许我的应用程序配置中有些东西会自动尝试部署到每个 AZ,但在这个新的 AZ 中还没有合适的基础设施?

有什么建议吗?

您收到的错误告诉我们 us-west-2d 没有默认子网。可以删除子网,包括默认子网,如果我们删除可用区的默认子网,并且我们正在使用的服务(在本例中 AmazonElasticLoadBalancing)依赖于该默认子网,那么我们将收到这个错误。

要解决它,只需在该可用区中重新创建默认子网,在本例中为 us-west-2d。您可以使用以下命令从 CLI 执行此操作:

aws ec2 create-default-subnet --availability-zone us-west-2d