Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试为网络负载均衡器设置弹性 IP,但每次创建堆栈时,它都无法指定域 vpc 是无效的参数值,尽管指定的 vpc 物理 id 存在并且它是之前创建的。
您是否已Domain: vpc在 CloudFormation 模板中设置好?
Domain: vpc
这应该有效:
ElasticIP: Type: AWS::EC2::EIP Properties: Domain: vpc # NOT vpc-1234abcd !!
如果您不指定Domain: vpc,您将无法将EIP附加到 VPC 内的资源,例如负载均衡器。