AWS: Облако Stepfunctions не может быть развернуто из SAM - PullRequest
0 голосов
/ 06 января 2019

Произошла ошибка ниже, когда я развернул пошаговую функцию с помощью развертывания SAM. Есть ли идеи, почему это произошло?

■ template.yaml

AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: Test Stack

Resources:
  TestSFN:
    Type: 'AWS::StepFunctions::StateMachine'
    Properties:
      RoleArn: arn:aws:iam::xxxxxxx:role/service-role/StatesExecutionRole-ap-northeast-1
      DefinitionString: |
        {
          "Comment": "test step function",
          "StartAt": "Test",
          "States": {
            "Test": {
              "Type": "Pass",
              "End": true
            }
          }
        }

■ Команды развертывания

$ sam package --template-file template.yaml --s3-bucket test-sam --output-template-file package.yaml
$ sam deploy --template-file package.yaml --stack-name TestStack --capabilities CAPABILITY_IAM

■ Ошибка захвата enter image description here

...