April 2017
Intermediate to advanced
394 pages
10h 31m
English
AWSTemplateFormatVersion: "2010-09-09" Description: This template creates a role that can be assumed from another account.
Parameters: SourceAccountNumber: Type: String Description: The AWS account number to grant access to assume the role. AllowedPattern: "[0-9]+" MaxLength: "12" MinLength: "12"
Resources: CrossAccountRole: Type: "AWS::IAM::Role" Properties: Path: "/" AssumeRolePolicyDocument: Version: "2012-10-17" Statement: - Sid: "" Action: "sts:AssumeRole" ...Read now
Unlock full access