reinvent-2020-blog-auditmanager.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AWSTemplateFormatVersion: '2010-09-09' | |
Description: AWS Audit Manager demo | |
Resources: | |
Assessment: | |
Type: AWS::AuditManager::Assessment | |
Properties: | |
AssessmentReportsDestination: | |
Destination: !Sub s3://${AWS::StackName}-${AWS::AccountId} | |
DestinationType: S3 | |
AwsAccount: | |
Id: !Ref AWS::AccountId | |
Name: !Ref AWS::StackName | |
Scope: | |
AwsAccounts: | |
- Id: !Ref AWS::AccountId | |
AwsServices: | |
- ServiceName: a4b | |
- ServiceName: acm | |
- ServiceName: acm-pca | |
- ServiceName: amazonmq | |
- ServiceName: amplify | |
Roles: | |
- RoleArn: !Sub arn:aws:iam::${AWS::AccountId}:role/${AWS::StackName} | |
RoleType: PROCESS_OWNER |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment