├── .circleci ├── config.yml ├── post-upgrade-test-results.sh └── set-upgrade-test-vars.sh ├── .github └── pull_request_template.md ├── .gitignore ├── .patcher ├── config.yaml └── patches │ ├── sample-breaking-change │ └── patch.yaml │ └── sample-breaking-change2 │ └── patch.yaml ├── .pre-commit-config.yaml ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE ├── README.md ├── codegen └── quotas │ ├── README.md │ ├── generate_quotas.py │ ├── requirements.txt │ └── templates.py ├── examples ├── executable-dependency │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── instance-type │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── join-path │ ├── README.md │ ├── main.tf │ └── outputs.tf ├── list-remove │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── operating-system │ ├── README.md │ ├── main.tf │ └── outputs.tf ├── pex │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── pex-env │ │ ├── bin │ │ │ └── sample_python_script_py3_env.pex │ │ ├── build_scripts │ │ │ ├── .python-version │ │ │ └── build.sh │ │ └── requirements.txt │ ├── sample_python_script │ │ ├── __init__.py │ │ └── main.py │ └── variables.tf ├── request-quota-increase │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ └── variables.tf └── require-executable │ ├── README.md │ ├── main.tf │ └── variables.tf ├── modules ├── executable-dependency │ ├── README.md │ ├── download-dependency-if-necessary.py │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── instance-type │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── join-path │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ └── vars.tf ├── list-remove │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── operating-system │ ├── README.md │ ├── main.tf │ └── outputs.tf ├── patcher-test │ ├── CHANGELOG.md │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── prepare-pex-environment │ ├── README.md │ ├── dependencies.tf │ ├── determine_python_path.py │ ├── entrypoint.py │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── request-quota-increase │ ├── CHANGELOG.md │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── require-executable │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── require_executable.py │ └── variables.tf ├── run-pex-as-data-source │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ └── variables.tf └── run-pex-as-resource │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── setup.cfg ├── terraform-cloud-enterprise-private-module-registry-placeholder.tf └── test ├── README.md ├── executable_dependency_test.go ├── go.mod ├── go.sum ├── instance_type_test.go ├── join_path_test.go ├── list_remove_test.go ├── operating_system_test.go ├── pex_test.go ├── request_quota_increase_test.go ├── require_executable_test.go ├── test_helpers.go ├── upgrades └── upgrade_test.go └── validation └── validate_all_modules_and_examples_test.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/post-upgrade-test-results.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/.circleci/post-upgrade-test-results.sh -------------------------------------------------------------------------------- /.circleci/set-upgrade-test-vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/.circleci/set-upgrade-test-vars.sh -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/.gitignore -------------------------------------------------------------------------------- /.patcher/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/.patcher/config.yaml -------------------------------------------------------------------------------- /.patcher/patches/sample-breaking-change/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/.patcher/patches/sample-breaking-change/patch.yaml -------------------------------------------------------------------------------- /.patcher/patches/sample-breaking-change2/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/.patcher/patches/sample-breaking-change2/patch.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/README.md -------------------------------------------------------------------------------- /codegen/quotas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/codegen/quotas/README.md -------------------------------------------------------------------------------- /codegen/quotas/generate_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/codegen/quotas/generate_quotas.py -------------------------------------------------------------------------------- /codegen/quotas/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3>=1.20.0,<2.0 2 | -------------------------------------------------------------------------------- /codegen/quotas/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/codegen/quotas/templates.py -------------------------------------------------------------------------------- /examples/executable-dependency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/executable-dependency/README.md -------------------------------------------------------------------------------- /examples/executable-dependency/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/executable-dependency/main.tf -------------------------------------------------------------------------------- /examples/executable-dependency/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/executable-dependency/outputs.tf -------------------------------------------------------------------------------- /examples/executable-dependency/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/executable-dependency/variables.tf -------------------------------------------------------------------------------- /examples/instance-type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/instance-type/README.md -------------------------------------------------------------------------------- /examples/instance-type/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/instance-type/main.tf -------------------------------------------------------------------------------- /examples/instance-type/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/instance-type/outputs.tf -------------------------------------------------------------------------------- /examples/instance-type/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/instance-type/variables.tf -------------------------------------------------------------------------------- /examples/join-path/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/join-path/README.md -------------------------------------------------------------------------------- /examples/join-path/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/join-path/main.tf -------------------------------------------------------------------------------- /examples/join-path/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/join-path/outputs.tf -------------------------------------------------------------------------------- /examples/list-remove/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/list-remove/README.md -------------------------------------------------------------------------------- /examples/list-remove/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/list-remove/main.tf -------------------------------------------------------------------------------- /examples/list-remove/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/list-remove/outputs.tf -------------------------------------------------------------------------------- /examples/list-remove/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/list-remove/variables.tf -------------------------------------------------------------------------------- /examples/operating-system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/operating-system/README.md -------------------------------------------------------------------------------- /examples/operating-system/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/operating-system/main.tf -------------------------------------------------------------------------------- /examples/operating-system/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/operating-system/outputs.tf -------------------------------------------------------------------------------- /examples/pex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/pex/README.md -------------------------------------------------------------------------------- /examples/pex/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/pex/main.tf -------------------------------------------------------------------------------- /examples/pex/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/pex/outputs.tf -------------------------------------------------------------------------------- /examples/pex/pex-env/bin/sample_python_script_py3_env.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/pex/pex-env/bin/sample_python_script_py3_env.pex -------------------------------------------------------------------------------- /examples/pex/pex-env/build_scripts/.python-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/pex/pex-env/build_scripts/.python-version -------------------------------------------------------------------------------- /examples/pex/pex-env/build_scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/pex/pex-env/build_scripts/build.sh -------------------------------------------------------------------------------- /examples/pex/pex-env/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/pex/pex-env/requirements.txt -------------------------------------------------------------------------------- /examples/pex/sample_python_script/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/pex/sample_python_script/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/pex/sample_python_script/main.py -------------------------------------------------------------------------------- /examples/pex/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/pex/variables.tf -------------------------------------------------------------------------------- /examples/request-quota-increase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/request-quota-increase/README.md -------------------------------------------------------------------------------- /examples/request-quota-increase/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/request-quota-increase/main.tf -------------------------------------------------------------------------------- /examples/request-quota-increase/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/request-quota-increase/outputs.tf -------------------------------------------------------------------------------- /examples/request-quota-increase/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/request-quota-increase/variables.tf -------------------------------------------------------------------------------- /examples/require-executable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/require-executable/README.md -------------------------------------------------------------------------------- /examples/require-executable/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/require-executable/main.tf -------------------------------------------------------------------------------- /examples/require-executable/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/examples/require-executable/variables.tf -------------------------------------------------------------------------------- /modules/executable-dependency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/executable-dependency/README.md -------------------------------------------------------------------------------- /modules/executable-dependency/download-dependency-if-necessary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/executable-dependency/download-dependency-if-necessary.py -------------------------------------------------------------------------------- /modules/executable-dependency/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/executable-dependency/main.tf -------------------------------------------------------------------------------- /modules/executable-dependency/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/executable-dependency/outputs.tf -------------------------------------------------------------------------------- /modules/executable-dependency/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/executable-dependency/variables.tf -------------------------------------------------------------------------------- /modules/instance-type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/instance-type/README.md -------------------------------------------------------------------------------- /modules/instance-type/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/instance-type/main.tf -------------------------------------------------------------------------------- /modules/instance-type/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/instance-type/outputs.tf -------------------------------------------------------------------------------- /modules/instance-type/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/instance-type/variables.tf -------------------------------------------------------------------------------- /modules/join-path/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/join-path/README.md -------------------------------------------------------------------------------- /modules/join-path/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/join-path/main.tf -------------------------------------------------------------------------------- /modules/join-path/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/join-path/outputs.tf -------------------------------------------------------------------------------- /modules/join-path/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/join-path/vars.tf -------------------------------------------------------------------------------- /modules/list-remove/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/list-remove/README.md -------------------------------------------------------------------------------- /modules/list-remove/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/list-remove/main.tf -------------------------------------------------------------------------------- /modules/list-remove/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/list-remove/outputs.tf -------------------------------------------------------------------------------- /modules/list-remove/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/list-remove/variables.tf -------------------------------------------------------------------------------- /modules/operating-system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/operating-system/README.md -------------------------------------------------------------------------------- /modules/operating-system/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/operating-system/main.tf -------------------------------------------------------------------------------- /modules/operating-system/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/operating-system/outputs.tf -------------------------------------------------------------------------------- /modules/patcher-test/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/patcher-test/CHANGELOG.md -------------------------------------------------------------------------------- /modules/patcher-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/patcher-test/README.md -------------------------------------------------------------------------------- /modules/patcher-test/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/patcher-test/main.tf -------------------------------------------------------------------------------- /modules/patcher-test/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/patcher-test/outputs.tf -------------------------------------------------------------------------------- /modules/patcher-test/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/patcher-test/variables.tf -------------------------------------------------------------------------------- /modules/prepare-pex-environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/prepare-pex-environment/README.md -------------------------------------------------------------------------------- /modules/prepare-pex-environment/dependencies.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/prepare-pex-environment/dependencies.tf -------------------------------------------------------------------------------- /modules/prepare-pex-environment/determine_python_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/prepare-pex-environment/determine_python_path.py -------------------------------------------------------------------------------- /modules/prepare-pex-environment/entrypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/prepare-pex-environment/entrypoint.py -------------------------------------------------------------------------------- /modules/prepare-pex-environment/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/prepare-pex-environment/main.tf -------------------------------------------------------------------------------- /modules/prepare-pex-environment/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/prepare-pex-environment/outputs.tf -------------------------------------------------------------------------------- /modules/prepare-pex-environment/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/prepare-pex-environment/variables.tf -------------------------------------------------------------------------------- /modules/request-quota-increase/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/request-quota-increase/CHANGELOG.md -------------------------------------------------------------------------------- /modules/request-quota-increase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/request-quota-increase/README.md -------------------------------------------------------------------------------- /modules/request-quota-increase/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/request-quota-increase/main.tf -------------------------------------------------------------------------------- /modules/request-quota-increase/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/request-quota-increase/outputs.tf -------------------------------------------------------------------------------- /modules/request-quota-increase/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/request-quota-increase/variables.tf -------------------------------------------------------------------------------- /modules/require-executable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/require-executable/README.md -------------------------------------------------------------------------------- /modules/require-executable/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/require-executable/main.tf -------------------------------------------------------------------------------- /modules/require-executable/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/require-executable/outputs.tf -------------------------------------------------------------------------------- /modules/require-executable/require_executable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/require-executable/require_executable.py -------------------------------------------------------------------------------- /modules/require-executable/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/require-executable/variables.tf -------------------------------------------------------------------------------- /modules/run-pex-as-data-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/run-pex-as-data-source/README.md -------------------------------------------------------------------------------- /modules/run-pex-as-data-source/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/run-pex-as-data-source/main.tf -------------------------------------------------------------------------------- /modules/run-pex-as-data-source/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/run-pex-as-data-source/outputs.tf -------------------------------------------------------------------------------- /modules/run-pex-as-data-source/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/run-pex-as-data-source/variables.tf -------------------------------------------------------------------------------- /modules/run-pex-as-resource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/run-pex-as-resource/README.md -------------------------------------------------------------------------------- /modules/run-pex-as-resource/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/run-pex-as-resource/main.tf -------------------------------------------------------------------------------- /modules/run-pex-as-resource/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/run-pex-as-resource/outputs.tf -------------------------------------------------------------------------------- /modules/run-pex-as-resource/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/modules/run-pex-as-resource/variables.tf -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/setup.cfg -------------------------------------------------------------------------------- /terraform-cloud-enterprise-private-module-registry-placeholder.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/terraform-cloud-enterprise-private-module-registry-placeholder.tf -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/test/README.md -------------------------------------------------------------------------------- /test/executable_dependency_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/test/executable_dependency_test.go -------------------------------------------------------------------------------- /test/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/test/go.mod -------------------------------------------------------------------------------- /test/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/test/go.sum -------------------------------------------------------------------------------- /test/instance_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/test/instance_type_test.go -------------------------------------------------------------------------------- /test/join_path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/test/join_path_test.go -------------------------------------------------------------------------------- /test/list_remove_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/test/list_remove_test.go -------------------------------------------------------------------------------- /test/operating_system_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/test/operating_system_test.go -------------------------------------------------------------------------------- /test/pex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/test/pex_test.go -------------------------------------------------------------------------------- /test/request_quota_increase_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/test/request_quota_increase_test.go -------------------------------------------------------------------------------- /test/require_executable_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/test/require_executable_test.go -------------------------------------------------------------------------------- /test/test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/test/test_helpers.go -------------------------------------------------------------------------------- /test/upgrades/upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/test/upgrades/upgrade_test.go -------------------------------------------------------------------------------- /test/validation/validate_all_modules_and_examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/terraform-aws-utilities/HEAD/test/validation/validate_all_modules_and_examples_test.go --------------------------------------------------------------------------------