https://github.com/jasonrig/paramiko-cloud
Use cloud-managed keys to perform SSH operations
https://github.com/jasonrig/paramiko-cloud
aws-kms azure-keyvault cloud gcp-kms ssh ssh-certificates
Last synced: 23 days ago
JSON representation
Use cloud-managed keys to perform SSH operations
- Host: GitHub
- URL: https://github.com/jasonrig/paramiko-cloud
- Owner: jasonrig
- Created: 2021-06-26T07:13:17.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2026-05-23T16:48:35.000Z (23 days ago)
- Last Synced: 2026-05-23T17:22:33.044Z (23 days ago)
- Topics: aws-kms, azure-keyvault, cloud, gcp-kms, ssh, ssh-certificates
- Language: Python
- Homepage:
- Size: 164 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# Paramiko-Cloud
[](https://sonarcloud.io/dashboard?id=jasonrig_paramiko-cloud) [](https://sonarcloud.io/dashboard?id=jasonrig_paramiko-cloud) [](https://sonarcloud.io/dashboard?id=jasonrig_paramiko-cloud)
Paramiko-Cloud is an extension to Paramiko that provides ECDSA SSH keys managed by
cloud-based key management services. As well as enabling Paramiko to perform SSH
operations using cloud-managed keys, it also provides certificate signing functions,
simplifying the implementation of an SSH certificate authority.
Paramiko-Cloud supports:
* [Amazon Web Services - Key Management Service](https://aws.amazon.com/kms/)
* [Google Cloud Platform - Cloud Key Management Service](https://cloud.google.com/security-key-management)
* [Microsoft Azure - Key Vault](https://azure.microsoft.com/en-us/services/key-vault/)
Read the docs here: https://paramiko-cloud.readthedocs.io/en/latest/
## Development with uv
```shell
# Sync runtime + optional cloud provider dependencies + test tooling
uv sync --extra all --group dev
# Generate protobuf / gRPC Python modules
uv run python scripts/build_proto.py
# Run tests
uv run pytest --cov=./ --cov-report=xml
# Static checks (requires generated protobuf modules first)
uv run python scripts/build_proto.py
uv run ruff check .
uv run ruff format . --check
uv run mypy paramiko_cloud
```