Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dannysteenman/aws-iam-arns
Generate a list of available ARNS in AWS
https://github.com/dannysteenman/aws-iam-arns
arn aws
Last synced: about 2 months ago
JSON representation
Generate a list of available ARNS in AWS
- Host: GitHub
- URL: https://github.com/dannysteenman/aws-iam-arns
- Owner: dannysteenman
- License: apache-2.0
- Created: 2023-09-07T08:50:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-07T09:23:37.000Z (over 1 year ago)
- Last Synced: 2024-05-02T04:16:26.498Z (8 months ago)
- Topics: arn, aws
- Language: JavaScript
- Homepage: https://towardsthecloud.com/amazon-resource-names-arns
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aws-iam-arns
A list of all known Amazon Resource Names (ARNs) fetched from the AWS policy generator
# Why?
In the official documentation, you find a general reference guide on using ARNs, that’s helpful to a certain extent.
But when you want to apply permissions on AWS resources, then you need the prefix name of the AWS service and the ARN in order to deny or allow actions on it.To my knowledge there is no reference or specification available that allows us to see which ARNs are available. Therefore we use the AWS IAM Poliocy generator to scrape the available ARNs.
# Generate and update the table
Requires curl, node, and jq.
Run `make update`; review the results.
The update works by reading JavaScript assets used by the AWS Policy Generator
. It's very much an
unsupported method though, so the update scripts might need updating from time
to time.# View the complete ARN table
On my blog I've published the complete table that got generated using this script:
https://towardsthecloud.com/amazon-resource-names-arns
# License
Licensed under the Apache License, Version 2.0. See the LICENSE file.
Original project (aws-iam-reference): https://github.com/rvedotrc/aws-iam-reference