├── .github └── workflows │ └── pypi.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── aws_assume_role_lib ├── __init__.py ├── __main__.py ├── aws_assume_role_lib.py └── py.typed ├── lambda-demo ├── .gitignore ├── README.md ├── deploy.py ├── src │ ├── handler1.py │ ├── handler2.py │ ├── handler3.py │ ├── handler4.py │ └── requirements.txt ├── template1.yaml ├── template2.yaml └── test.py ├── pyproject.toml └── tests ├── template.yaml └── test.py /.github/workflows/pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/.github/workflows/pypi.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/README.md -------------------------------------------------------------------------------- /aws_assume_role_lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/aws_assume_role_lib/__init__.py -------------------------------------------------------------------------------- /aws_assume_role_lib/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/aws_assume_role_lib/__main__.py -------------------------------------------------------------------------------- /aws_assume_role_lib/aws_assume_role_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/aws_assume_role_lib/aws_assume_role_lib.py -------------------------------------------------------------------------------- /aws_assume_role_lib/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda-demo/.gitignore: -------------------------------------------------------------------------------- 1 | .aws-sam 2 | -------------------------------------------------------------------------------- /lambda-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/lambda-demo/README.md -------------------------------------------------------------------------------- /lambda-demo/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/lambda-demo/deploy.py -------------------------------------------------------------------------------- /lambda-demo/src/handler1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/lambda-demo/src/handler1.py -------------------------------------------------------------------------------- /lambda-demo/src/handler2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/lambda-demo/src/handler2.py -------------------------------------------------------------------------------- /lambda-demo/src/handler3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/lambda-demo/src/handler3.py -------------------------------------------------------------------------------- /lambda-demo/src/handler4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/lambda-demo/src/handler4.py -------------------------------------------------------------------------------- /lambda-demo/src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/lambda-demo/src/requirements.txt -------------------------------------------------------------------------------- /lambda-demo/template1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/lambda-demo/template1.yaml -------------------------------------------------------------------------------- /lambda-demo/template2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/lambda-demo/template2.yaml -------------------------------------------------------------------------------- /lambda-demo/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/lambda-demo/test.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/tests/template.yaml -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-assume-role-lib/HEAD/tests/test.py --------------------------------------------------------------------------------