2

我正在从事一个 CI/CD 项目(使用 circleci 管道),目前,我坚持让我的“create_infrastructure”工作正常工作。下面是作业

    # AWS infrastructure
    create_infrastructure:
          docker:
              - image: amazon/aws-cli
          steps:
            - checkout
            - run:
                name: Ensure backend infrastructure exist
                command: |
                  aws cloudformation deploy \
                    --template-file template.yml \
                    --stack-name my-stack

当我运行上面的作业时,它会返回Invalid template path template.yml

  • 我想把template.yml文件放在哪里?
  • config.yml我把它和项目的 GitHub 存储库放在了相同的位置(是这样吗?
  • 难道--template-file template.yml我的工作就行了这个问题?(我是这里的初学者)。请我需要帮助。
4

1 回答 1

2

我实际上拼错了在我的 GitHub 存储库中找到的模板的名称。改正后一切正常。但我认为这个错误根本不明确,我期待像“在指定的路径中找不到模板”,而不是“无效的模板路径 template.yml”

于 2020-07-31T21:30:26.510 回答