错误VPCResourceNotSpecified

时间:2016-02-13 18:13:11

标签: cloudify

尝试在亚马逊中部署实例时遇到错误。我使用的是Cloudify 3.2.1。

我的蓝图:

...
node_templates:

  host:
    type: cloudify.aws.nodes.Instance
    properties:
      image_id: { get_input: image }
      instance_type: { get_input: size_wordpress }
...

我的意见:

...
size_wordpress: t2.small
...

错误:

<Code>VPCResourceNotSpecified</Code>
<Message>The specified instance type can only be used in a VPC. A subnet ID or network interface ID is required to carry out the request.</Message>

如何解决?

1 个答案:

答案 0 :(得分:2)

T2实例类型需要VPC而不是EC2 Classic。

您可以使用VPC或使用其他实例类型。

EC2 instances

Cloudify VPC spec