├── .DS_Store ├── .github └── PULL_REQUEST_TEMPLATE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── govcloud ├── LICENSE ├── README.md ├── commercial-side-setup │ ├── AccountCreationLambda.zip │ ├── CommercialAccountSetup.yaml │ └── commercial-account-avm-product.yaml ├── govcloud-side-setup │ ├── AccountBootstrapLambda.zip │ ├── Accountbaseline.yml │ ├── GovCloudAccountSetup.yaml │ └── govcloud-account-avm-product.yaml └── images │ ├── commercial-avm.png │ ├── commercial-outputs.png │ ├── commercial-params.png │ ├── end-user.png │ ├── govcloud-avm.png │ ├── govcloud-launch-outputs.png │ ├── govcloud-launch-params.png │ ├── govcloud-params.png │ ├── iam-cfn-checkbox.png │ ├── launch-stack.svg │ ├── output.png │ ├── product-list-govcloud.png │ ├── product-list.png │ ├── sc-vpc-output.png │ ├── vpc-console-created.png │ ├── vpc-error.png │ └── vpc.png └── resources ├── AccountCreationLambda.zip ├── AccountCreationLambdaCode ├── AccountCreationLambda.py ├── cfnresponse-1.1.2.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ └── top_level.txt ├── cfnresponse │ ├── __init__.py │ └── __init__.pyc ├── crhelper-2.0.11-py2.7.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── installed-files.txt │ └── top_level.txt ├── crhelper │ ├── __init__.py │ ├── __init__.pyc │ ├── __init__.pyi │ ├── log_helper.py │ ├── log_helper.pyc │ ├── log_helper.pyi │ ├── py.typed │ ├── resource_helper.py │ ├── resource_helper.pyc │ ├── resource_helper.pyi │ ├── utils.py │ └── utils.pyi ├── urllib3-1.26.15.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt └── urllib3 │ ├── __init__.py │ ├── __init__.pyc │ ├── _collections.py │ ├── _collections.pyc │ ├── _version.py │ ├── _version.pyc │ ├── connection.py │ ├── connection.pyc │ ├── connectionpool.py │ ├── connectionpool.pyc │ ├── contrib │ ├── __init__.py │ ├── __init__.pyc │ ├── _appengine_environ.py │ ├── _appengine_environ.pyc │ ├── _securetransport │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── bindings.py │ │ ├── bindings.pyc │ │ ├── low_level.py │ │ └── low_level.pyc │ ├── appengine.py │ ├── appengine.pyc │ ├── ntlmpool.py │ ├── ntlmpool.pyc │ ├── pyopenssl.py │ ├── pyopenssl.pyc │ ├── securetransport.py │ ├── securetransport.pyc │ ├── socks.py │ └── socks.pyc │ ├── exceptions.py │ ├── exceptions.pyc │ ├── fields.py │ ├── fields.pyc │ ├── filepost.py │ ├── filepost.pyc │ ├── packages │ ├── __init__.py │ ├── __init__.pyc │ ├── backports │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── makefile.py │ │ └── makefile.pyc │ ├── six.py │ └── six.pyc │ ├── poolmanager.py │ ├── poolmanager.pyc │ ├── request.py │ ├── request.pyc │ ├── response.py │ ├── response.pyc │ └── util │ ├── __init__.py │ ├── __init__.pyc │ ├── connection.py │ ├── connection.pyc │ ├── proxy.py │ ├── proxy.pyc │ ├── queue.py │ ├── queue.pyc │ ├── request.py │ ├── request.pyc │ ├── response.py │ ├── response.pyc │ ├── retry.py │ ├── retry.pyc │ ├── ssl_.py │ ├── ssl_.pyc │ ├── ssl_match_hostname.py │ ├── ssl_match_hostname.pyc │ ├── ssltransport.py │ ├── ssltransport.pyc │ ├── timeout.py │ ├── timeout.pyc │ ├── url.py │ ├── url.pyc │ ├── wait.py │ └── wait.pyc ├── AccountCreationLambdaSetup-cfn.yaml ├── Accountbaseline.yml ├── accountbuilder.yml ├── images ├── avm-architecture-dark.png ├── avm-architecture.png ├── end-user.png ├── launch-stack.svg ├── output.png ├── product-list.png ├── sc-vpc-output.png ├── vpc-console-created.png ├── vpc-error.png └── vpc.png └── requests-v2.23.0.zip /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/README.md -------------------------------------------------------------------------------- /govcloud/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/LICENSE -------------------------------------------------------------------------------- /govcloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/README.md -------------------------------------------------------------------------------- /govcloud/commercial-side-setup/AccountCreationLambda.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/commercial-side-setup/AccountCreationLambda.zip -------------------------------------------------------------------------------- /govcloud/commercial-side-setup/CommercialAccountSetup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/commercial-side-setup/CommercialAccountSetup.yaml -------------------------------------------------------------------------------- /govcloud/commercial-side-setup/commercial-account-avm-product.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/commercial-side-setup/commercial-account-avm-product.yaml -------------------------------------------------------------------------------- /govcloud/govcloud-side-setup/AccountBootstrapLambda.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/govcloud-side-setup/AccountBootstrapLambda.zip -------------------------------------------------------------------------------- /govcloud/govcloud-side-setup/Accountbaseline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/govcloud-side-setup/Accountbaseline.yml -------------------------------------------------------------------------------- /govcloud/govcloud-side-setup/GovCloudAccountSetup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/govcloud-side-setup/GovCloudAccountSetup.yaml -------------------------------------------------------------------------------- /govcloud/govcloud-side-setup/govcloud-account-avm-product.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/govcloud-side-setup/govcloud-account-avm-product.yaml -------------------------------------------------------------------------------- /govcloud/images/commercial-avm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/images/commercial-avm.png -------------------------------------------------------------------------------- /govcloud/images/commercial-outputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/images/commercial-outputs.png -------------------------------------------------------------------------------- /govcloud/images/commercial-params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/images/commercial-params.png -------------------------------------------------------------------------------- /govcloud/images/end-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/images/end-user.png -------------------------------------------------------------------------------- /govcloud/images/govcloud-avm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/images/govcloud-avm.png -------------------------------------------------------------------------------- /govcloud/images/govcloud-launch-outputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/images/govcloud-launch-outputs.png -------------------------------------------------------------------------------- /govcloud/images/govcloud-launch-params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/images/govcloud-launch-params.png -------------------------------------------------------------------------------- /govcloud/images/govcloud-params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/images/govcloud-params.png -------------------------------------------------------------------------------- /govcloud/images/iam-cfn-checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/images/iam-cfn-checkbox.png -------------------------------------------------------------------------------- /govcloud/images/launch-stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/images/launch-stack.svg -------------------------------------------------------------------------------- /govcloud/images/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/images/output.png -------------------------------------------------------------------------------- /govcloud/images/product-list-govcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/images/product-list-govcloud.png -------------------------------------------------------------------------------- /govcloud/images/product-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/images/product-list.png -------------------------------------------------------------------------------- /govcloud/images/sc-vpc-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/images/sc-vpc-output.png -------------------------------------------------------------------------------- /govcloud/images/vpc-console-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/images/vpc-console-created.png -------------------------------------------------------------------------------- /govcloud/images/vpc-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/images/vpc-error.png -------------------------------------------------------------------------------- /govcloud/images/vpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/govcloud/images/vpc.png -------------------------------------------------------------------------------- /resources/AccountCreationLambda.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambda.zip -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/AccountCreationLambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/AccountCreationLambda.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/cfnresponse-1.1.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/cfnresponse-1.1.2.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/cfnresponse-1.1.2.dist-info/LICENSE -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/cfnresponse-1.1.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/cfnresponse-1.1.2.dist-info/METADATA -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/cfnresponse-1.1.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/cfnresponse-1.1.2.dist-info/RECORD -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/cfnresponse-1.1.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/cfnresponse-1.1.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/cfnresponse-1.1.2.dist-info/WHEEL -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/cfnresponse-1.1.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | cfnresponse 2 | -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/cfnresponse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/cfnresponse/__init__.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/cfnresponse/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/cfnresponse/__init__.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/crhelper-2.0.11-py2.7.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/crhelper-2.0.11-py2.7.egg-info/PKG-INFO -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/crhelper-2.0.11-py2.7.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/crhelper-2.0.11-py2.7.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/crhelper-2.0.11-py2.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/crhelper-2.0.11-py2.7.egg-info/installed-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/crhelper-2.0.11-py2.7.egg-info/installed-files.txt -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/crhelper-2.0.11-py2.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | crhelper 2 | -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/crhelper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/crhelper/__init__.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/crhelper/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/crhelper/__init__.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/crhelper/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/crhelper/__init__.pyi -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/crhelper/log_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/crhelper/log_helper.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/crhelper/log_helper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/crhelper/log_helper.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/crhelper/log_helper.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/crhelper/log_helper.pyi -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/crhelper/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/crhelper/resource_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/crhelper/resource_helper.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/crhelper/resource_helper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/crhelper/resource_helper.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/crhelper/resource_helper.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/crhelper/resource_helper.pyi -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/crhelper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/crhelper/utils.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/crhelper/utils.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/crhelper/utils.pyi -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3-1.26.15.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3-1.26.15.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3-1.26.15.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3-1.26.15.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3-1.26.15.dist-info/METADATA -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3-1.26.15.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3-1.26.15.dist-info/RECORD -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3-1.26.15.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3-1.26.15.dist-info/WHEEL -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3-1.26.15.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/__init__.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/__init__.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/_collections.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/_collections.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/_collections.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.15" 3 | -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/_version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/_version.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/connection.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/connection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/connection.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/connectionpool.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/connectionpool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/connectionpool.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/contrib/__init__.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/contrib/_appengine_environ.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/_appengine_environ.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/contrib/_appengine_environ.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/_securetransport/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/contrib/_securetransport/__init__.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/_securetransport/bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/contrib/_securetransport/bindings.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/_securetransport/bindings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/contrib/_securetransport/bindings.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/_securetransport/low_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/contrib/_securetransport/low_level.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/_securetransport/low_level.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/contrib/_securetransport/low_level.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/appengine.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/contrib/appengine.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/ntlmpool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/contrib/ntlmpool.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/pyopenssl.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/contrib/pyopenssl.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/securetransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/contrib/securetransport.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/securetransport.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/contrib/securetransport.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/contrib/socks.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/contrib/socks.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/exceptions.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/exceptions.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/fields.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/fields.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/fields.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/filepost.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/filepost.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/filepost.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/packages/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/packages/__init__.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/packages/backports/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/packages/backports/__init__.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/packages/backports/makefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/packages/backports/makefile.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/packages/backports/makefile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/packages/backports/makefile.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/packages/six.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/packages/six.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/packages/six.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/poolmanager.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/poolmanager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/poolmanager.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/request.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/request.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/request.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/response.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/response.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/response.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/__init__.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/__init__.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/connection.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/connection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/connection.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/proxy.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/proxy.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/proxy.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/queue.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/queue.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/queue.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/request.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/request.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/request.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/response.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/response.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/response.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/retry.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/retry.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/retry.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/ssl_.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/ssl_.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/ssl_match_hostname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/ssl_match_hostname.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/ssl_match_hostname.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/ssl_match_hostname.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/ssltransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/ssltransport.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/ssltransport.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/ssltransport.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/timeout.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/timeout.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/timeout.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/url.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/url.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/url.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/wait.py -------------------------------------------------------------------------------- /resources/AccountCreationLambdaCode/urllib3/util/wait.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaCode/urllib3/util/wait.pyc -------------------------------------------------------------------------------- /resources/AccountCreationLambdaSetup-cfn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/AccountCreationLambdaSetup-cfn.yaml -------------------------------------------------------------------------------- /resources/Accountbaseline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/Accountbaseline.yml -------------------------------------------------------------------------------- /resources/accountbuilder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/accountbuilder.yml -------------------------------------------------------------------------------- /resources/images/avm-architecture-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/images/avm-architecture-dark.png -------------------------------------------------------------------------------- /resources/images/avm-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/images/avm-architecture.png -------------------------------------------------------------------------------- /resources/images/end-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/images/end-user.png -------------------------------------------------------------------------------- /resources/images/launch-stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/images/launch-stack.svg -------------------------------------------------------------------------------- /resources/images/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/images/output.png -------------------------------------------------------------------------------- /resources/images/product-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/images/product-list.png -------------------------------------------------------------------------------- /resources/images/sc-vpc-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/images/sc-vpc-output.png -------------------------------------------------------------------------------- /resources/images/vpc-console-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/images/vpc-console-created.png -------------------------------------------------------------------------------- /resources/images/vpc-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/images/vpc-error.png -------------------------------------------------------------------------------- /resources/images/vpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/images/vpc.png -------------------------------------------------------------------------------- /resources/requests-v2.23.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-account-vending-machine/HEAD/resources/requests-v2.23.0.zip --------------------------------------------------------------------------------