This file contains hidden or 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 | |
| Resources: | |
| ModuleVersion: | |
| Type: 'AWS::CloudFormation::ModuleVersion' | |
| Properties: | |
| ModuleName: 'MYORG::SERVICENAME::PolicyV1::MODULE' | |
| ModulePackage: 's3://<bucket-name>/<object-name>.zip' |
This file contains hidden or 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: 'module client' | |
| Resources: | |
| ScannerRole: | |
| Type: myorg::IAM::DynamoDBScannerPolicyV1::MODULE | |
| Properties: | |
| TableArn: arn:aws:dynamodb:us-east-1:123456789012:table/table1 | |
| NamePrefix: client |
This file contains hidden or 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": "An IAM Policy that only allows scan access to a specified DynamoDB table", | |
| "Parameters": { | |
| "TableArn": { | |
| "Description": "ARN of the DynamoDB table to allow access to", | |
| "Type": "String" | |
| }, | |
| "NamePrefix": { | |
| "Description": "Prefix to attach to the policy name", |