├── .bumpversion.cfg ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── changelog.md ├── credstash ├── credstash-migrate-autoversion.py ├── credstash.py ├── credstash_migrate_digests.py ├── integration_tests ├── test_commands.bats ├── test_credstash_lib.py └── test_kms_region.bats ├── optional-requirements.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── expand_wildcard_test.py ├── get_session_test.py ├── key_pair_test.py ├── key_service_test.py └── pad_left_test.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/SECURITY.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/changelog.md -------------------------------------------------------------------------------- /credstash: -------------------------------------------------------------------------------- 1 | credstash.py -------------------------------------------------------------------------------- /credstash-migrate-autoversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/credstash-migrate-autoversion.py -------------------------------------------------------------------------------- /credstash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/credstash.py -------------------------------------------------------------------------------- /credstash_migrate_digests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/credstash_migrate_digests.py -------------------------------------------------------------------------------- /integration_tests/test_commands.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/integration_tests/test_commands.bats -------------------------------------------------------------------------------- /integration_tests/test_credstash_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/integration_tests/test_credstash_lib.py -------------------------------------------------------------------------------- /integration_tests/test_kms_region.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/integration_tests/test_kms_region.bats -------------------------------------------------------------------------------- /optional-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/optional-requirements.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | cryptography>=2.1 2 | boto3>=1.1.1 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = T001 3 | max-line-length = 120 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/setup.py -------------------------------------------------------------------------------- /tests/expand_wildcard_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/tests/expand_wildcard_test.py -------------------------------------------------------------------------------- /tests/get_session_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/tests/get_session_test.py -------------------------------------------------------------------------------- /tests/key_pair_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/tests/key_pair_test.py -------------------------------------------------------------------------------- /tests/key_service_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/tests/key_service_test.py -------------------------------------------------------------------------------- /tests/pad_left_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/tests/pad_left_test.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue/credstash/HEAD/tox.ini --------------------------------------------------------------------------------