├── .github └── workflows │ └── publish-to-test-pypi.yml ├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml ├── setup.cfg └── src ├── genspc4awsorg.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── entry_points.txt ├── requires.txt └── top_level.txt └── genspc4awsorg ├── __init__.py └── __main__.py /.github/workflows/publish-to-test-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy240/steampipe-conn-generator-for-aws-organization/HEAD/.github/workflows/publish-to-test-pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy240/steampipe-conn-generator-for-aws-organization/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy240/steampipe-conn-generator-for-aws-organization/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy240/steampipe-conn-generator-for-aws-organization/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy240/steampipe-conn-generator-for-aws-organization/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy240/steampipe-conn-generator-for-aws-organization/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/genspc4awsorg.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy240/steampipe-conn-generator-for-aws-organization/HEAD/src/genspc4awsorg.egg-info/PKG-INFO -------------------------------------------------------------------------------- /src/genspc4awsorg.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy240/steampipe-conn-generator-for-aws-organization/HEAD/src/genspc4awsorg.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /src/genspc4awsorg.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/genspc4awsorg.egg-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy240/steampipe-conn-generator-for-aws-organization/HEAD/src/genspc4awsorg.egg-info/entry_points.txt -------------------------------------------------------------------------------- /src/genspc4awsorg.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | boto3>=1.19.5 2 | -------------------------------------------------------------------------------- /src/genspc4awsorg.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | genspc4awsorg 2 | -------------------------------------------------------------------------------- /src/genspc4awsorg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/genspc4awsorg/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy240/steampipe-conn-generator-for-aws-organization/HEAD/src/genspc4awsorg/__main__.py --------------------------------------------------------------------------------