Configuring permissions for a custom Amazon AppConfig extension - Amazon AppConfig
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Configuring permissions for a custom Amazon AppConfig extension

Use the following procedure to create and configure an Amazon Identity and Access Management (IAM) service role (or assume role). Amazon AppConfig uses this role to invoke the Lambda function.

To create an IAM service role and allow Amazon AppConfig to assume it
  1. Open the IAM console at https://console.amazonaws.cn/iam/.

  2. In the navigation pane, choose Roles, and then choose Create role.

  3. Under Select type of trusted entity, choose Custom trust policy.

  4. Paste the following JSON policy into the Custom trust policy field.

    { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": { "Service": "appconfig.amazonaws.com" }, "Action": "sts:AssumeRole" } ] }

    Choose Next.

  5. On the Add permissions page, choose Create policy. The Create policy page opens in a new tab.

  6. Choose the JSON tab, and then paste the following permission policy into the editor. The lambda:InvokeFunction action is used for PRE_* action points. The lambda:InvokeAsync action is used for ON_* action points. Replace Your Lambda ARN with the Amazon Resource Name (ARN) of your Lambda.

    { "Version": "2012-10-17", "Statement": [ { "Sid": "VisualEditor0", "Effect": "Allow", "Action": [ "lambda:InvokeFunction", "lambda:InvokeAsync" ], "Resource": "Your Lambda ARN" } ] }
  7. Choose Next: Tags.

  8. On the Add tags (Optional) page, add one or more key-value pairs and then choose Next: Review.

  9. On the Review policy page enter a name and a description, and then choose Create policy.

  10. On the browser tab for your custom trust policy, choose the Refresh icon and then search for the permission policy you just created.

  11. Select the check box for your permission policy and then choose Next.

  12. On the Name, review, and create page, enter a name in the Role name box, and then enter a description.

  13. Choose Create role. The system returns you to the Roles page. Choose View role in the banner.

  14. Copy the ARN. You specify this ARN when you create the extension.