DeepSecurity のクロスアカウントロールを CloudFormation で
2098 ワード
[Deep Security] AWSアカウント連携をIAM Roleで設定する を CloudFormation でやるには
<account_id>
は公式ドキュメント を参照
---
AWSTemplateFormatVersion: '2010-09-09'
Parameters:
ExternalId:
Type: 'String'
Resources:
DeepSecurityDelegationRole:
Type: 'AWS::IAM::Role'
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: 'Allow'
Condition:
StringEquals:
'sts:ExternalId':
Ref: 'ExternalId'
Principal:
AWS:
- 'arn:aws:iam::<account_id>:root'
Action:
- 'sts:AssumeRole'
DeepSecurityAWSIntegrationPolicy:
Type: 'AWS::IAM::ManagedPolicy'
Properties:
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: 'Allow'
Action:
- 'ec2:DescribeImages'
- 'ec2:DescribeInstances'
- 'ec2:DescribeRegions'
- 'ec2:DescribeSubnets'
- 'ec2:DescribeTags'
- 'ec2:DescribeVpcs'
- 'iam:ListAccountAliases'
Resource: '*'
Roles:
- Ref: 'DeepSecurityDelegationRole'
Outputs:
RoleArn:
Value:
'Fn::GetAtt':
- 'DeepSecurityDelegationRole'
- 'Arn'
ExternalId:
Value:
Ref: 'ExternalId'
DeepSecurity 側の画面で CloudFormation の Outputs
で出力された RoleArn
を クロスアカウントロールのARN
へ ExternalId
を 外部ID
へ入力。
Author And Source
この問題について(DeepSecurity のクロスアカウントロールを CloudFormation で), 我々は、より多くの情報をここで見つけました https://qiita.com/anri-c/items/ecded8e0da9a5c4742eb著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .