Skip to content

Commit

Permalink
Merge pull request #8 from gabrielsoltz/fix-release
Browse files Browse the repository at this point in the history
fix-release
  • Loading branch information
gabrielsoltz authored Feb 7, 2024
2 parents 27526a6 + cc9d56a commit b19803b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# aws-arn
A complete list of all AWS ARNs with their respective Cloudformation, Terraform and ASFF resource names.
A complete list of all AWS ARNs with their respective Cloudformation, Terraform, and ASFF resource names.

This is a complete list of all AWS ARNs. The list is sorted alphabetically by service and resource. This is the only complete list of AWS ARNs available anywhere.

This is also a python module and CLI to generate ARNs for any AWS resource by passing in the resource ID, region and partition.
This is also a Python module and CLI that generates ARNs for any AWS resource by passing in the resource ID, region, and partition.

You can use this repository as documentation, or you can use it as a module or CLI to generate ARNs for any AWS resource.
This repository can be used as documentation or as a module or CLI to generate ARNs for any AWS resource.

> :warning: **Work in progress**: This is a work in progress. Not all services and resources are included yet. Please open an issue or pull request if you find any errors or omissions.
- Total number of services: 153
- Total number of resources: 468

See the full list of ARNs [here](#full-list-of-arns).
See the complete list of ARNs [here](#full-list-of-arns).

# Features

- Generate ARNs for any AWS resource by passing in the resource ID, region and partition
- Generate ARNs for any AWS resource by passing in the resource ID, region, and partition
- Using service and resoruce name (e.g. `acm` and `certificate`)
- Using Terraform resource name (e.g. `aws_acm_certificate`)
- Using Cloudformation resource name (e.g. `AWS::CertificateManager::Certificate`)
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

setup(
name="aws-arn",
version="0.0.12",
version="0.0.13",
description="A library to work with AWS ARNs",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=["aws_arn"],
install_requires=[],
entry_points={
Expand Down

0 comments on commit b19803b

Please sign in to comment.