Amazon web services 具有导出值和Taskcat的CloudFormation堆栈

Amazon web services 具有导出值和Taskcat的CloudFormation堆栈,amazon-web-services,continuous-integration,automated-tests,amazon-cloudformation,Amazon Web Services,Continuous Integration,Automated Tests,Amazon Cloudformation,我尝试在CI管道中使用Taskcat测试一组堆栈,但其中一些堆栈依赖于其他堆栈及其导出值 Taskcat是否能够在部署列表中的其他堆栈之前,先等待配置测试部分中的其他堆栈完成 我使用的taskcat配置与此类似: project: name: cfn-test regions: - us-east-1 tests: test-template-with-exported-values: parameters: EnvironmentId: ci t

我尝试在CI管道中使用Taskcat测试一组堆栈,但其中一些堆栈依赖于其他堆栈及其导出值

Taskcat是否能够在部署列表中的其他堆栈之前,先等待配置测试部分中的其他堆栈完成

我使用的taskcat配置与此类似:

project:
  name: cfn-test
  regions:
    - us-east-1
tests:
  test-template-with-exported-values:
    parameters:
      EnvironmentId: ci
    template: ./test-template-1.yml
  test-template-using-exported-values:
    parameters:
      EnvironmentId: ci
    template: ./test-template-2.yml
第二次测试将立即失败,出现类似错误,如下所示:

No export named SomeExportedValue found

目前没有,但在我们的积压工作中。有关跟踪,请参阅此GitHub问题

我们将在那里发布更新,包括可用的开发构建版本

Thx

-安德鲁