0

私はコンコースを初めて使用し、それを使用して terraform-ci プラットフォームを作成しようとしていますが、最初のパイプラインでこのエラーが発生する理由がわかりません。誰か助けてもらえますか?

jobs:
  - name: terraform-pipeline
    serial: true
    plan:
      - aggregate:
        - get: master-branch
          trigger: true 
        - get: common-tasks
          params: { submodules: [ terraform ] }
          trigger: true
      - task: terraform-plan
        file: common-tasks/terraform/0.12.29.yml
        input_mapping: { source: master-branch }
        params:
          command: plan
          cache: true
          access_key: ((aws-access-key))
          secret_key: ((aws-secret-key))
          directory: master-branch/terraform-poc/dev
          
resources:
  - name: master-branch
    type: git
    source:
      uri: https://github.com/rossrollin/terraform-poc
      branch: master
  - name: common-tasks
    type: git
    source:
      uri: https://github.com/telia-oss/concourse-tasks.git
      branch: master

次のようにパイプラインを実行します。

fly -t concourse-poc sp -p terraform-pipeline -c pipeline2.yml -v aws-access-key=''-v aws-secret-key=''
error: error unmarshaling JSON: while decoding JSON: no step configured
4

2 に答える 2