Send dynamic parameters from Step Function to CloudFormation

0

Hi,

I am using CloudFormation create stack task in StepFunction as per screenshot. How can I pass AccountId to my template.

Enter image description here

Template:


Parameters:
  AccountId:
    Type: String

Resources:
  GitHubRole:
    Type: AWS::IAM::Role
    Properties:
      AssumeRolePolicyDocument:
        Version: '2012-10-17'
        Statement:
          - Effect: 'Allow'
            Principal:
              Federated: !Sub arn:aws:iam::${AccountId}:oidc-provider/login.github.com
            Action: 'sts:AssumeRoleWithWebIdentity'

When I send this event in SF: { "AccountId": "12345678910" }

I got this error:

Parameters: [AccountId] must have values (Service: CloudFormation, Status Code: 400, Request ID: 2484b98c-fc47-4a4c-9e98-591485fd0ab8)

1 回答
2
已接受的回答

You need to append .$ to the key name. E.g., "ParameterValue.$": "$.AccountId"

profile pictureAWS
专家
Uri
已回答 3 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则