为什么我的Cloudformation数据管道在我的Ec2Resource上失败?

时间:2017-07-14 18:56:48

标签: amazon-data-pipeline amazon-cloudformation data-pipeline

我正在尝试在云形成堆栈中运行数据管道。此堆栈引用包含Redshift集群的另一个堆栈的导出。当我运行它时,我收到错误声明" ' Ec2Instance',errors =验证此对象时的内部错误。“;但我无法找到有关此错误或其含义的更多信息。其他对象显示相同的错误,但它们依赖于Ec2Instance。基于此,我假设这是一个级联情况。 这是我的Ec2Instance的PipelineObject。

{
"Id": "Ec2Instance",
"Name": "Ec2Instance",
"Fields": [
  {
    "Key": "type",
    "StringValue": "Ec2Resource"
  },
  {
    "Key": "role",
    "StringValue": "DataPipelineDefaultRole"
  },
  {
    "Key": "resourceRole",
    "StringValue": "DataPipelineDefaultResourceRole"
  },
  {
    "Key": "terminateAfter",
    "StringValue": "1 Hour"
  },
  {
    "Key": "actionOnTaskFailure",
    "StringValue": "terminate"
  },
  {
    "Key": "actionOnResourceFailure",
    "StringValue": "retryAll"
  },
  {
    "Key": "maximumRetries",
    "StringValue": "1"
  },
  {
    "Key": "instanceType",
    "StringValue": "m1.medium"
  },
  {
    "Key": "securityGroupIds",
    "StringValue": "#{myRDSRedshiftSecurityGrps}"
  },
  {
    "Key": "subnetId",
    "StringValue": "#{myRedshiftClusterSubnetGroup}"
  }
]
}

0 个答案:

没有答案