我正在尝试在新 VPC 中使用网络负载均衡器创建 Beanstalk 应用程序(一个公共子网、一个私有子网、互联网网关、nat 网关......)
我可以在我的个人 aws 帐户中成功创建。
使用我的组织帐户,我有此错误“VPC 不存在”:
eb create Dev-Price-Availability-API-App-Dev -i t2.micro --vpc --vpc.id vpc-e753b89d
Do you want to associate a public IP address? (Y/n): n
Enter a comma-separated list of Amazon EC2 subnets: subnet-2903f417
Enter a comma-separated list of Amazon ELB subnets: subnet-2903f417
Enter a comma-separated list of Amazon VPC security groups: sg-c382d588
Do you want the load balancer to be public? (Select no for internal) (Y/n): n
NOTE: The current directory does not contain any source code. Elastic Beanstalk is launching the sample application instead.
ERROR: ServiceError - Configuration validation exception: The VPC 'vpc-e753b89d' does not exist.
我尝试多次重现(创建新的 VPC ...),并且该脚本始终在我的个人 AWS 中成功运行,但在组织 AWS 中出现相同的错误。vpc 和 beanstalk 的所有子网都在同一个区域 (us-east-1)。
有时,脚本会抛出“子网不存在”,“安全组不存在”有没有人有同样的问题,你能给我一些想法吗?