Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryotarai/aws-cloudtrail-tags
Create tags of resources on events from CloudTrail
https://github.com/ryotarai/aws-cloudtrail-tags
Last synced: 9 days ago
JSON representation
Create tags of resources on events from CloudTrail
- Host: GitHub
- URL: https://github.com/ryotarai/aws-cloudtrail-tags
- Owner: ryotarai
- Created: 2018-12-03T15:30:28.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-03T15:31:41.000Z (about 6 years ago)
- Last Synced: 2024-11-07T17:04:45.680Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Deploy
```
cp sam.example.yaml sam.yaml
vim sam.yamlcp config.example.py config.py
vim config.py
``````
S3_BUCKET_NAME=your-s3-bucket-name
sam package \
--template-file sam.yaml \
--output-template-file sam-output.yaml \
--s3-bucket "$S3_BUCKET_NAME" \
--s3-prefix sam/aws-tags-by-cloudtrail
sam deploy \
--template-file sam-output.yaml \
--stack-name aws-tags-by-cloudtrail \
--capabilities CAPABILITY_IAM
```