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 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南