No project description provided
Project description
ec2ctl: Effortless EC2 Instance Control
A lightweight CLI tool to manage AWS EC2 instances by name or group, designed for developers and DevOps who need a faster, more intuitive way to control their instances without repetitive console access.
Table of Contents
- Purpose
- Features
- Installation
- Configuration
- Usage
- Error Handling & Troubleshooting
- Contributing
- License
Purpose
ec2ctl simplifies the management of AWS EC2 instances. It allows you to control instances with intuitive commands based on a local configuration file, eliminating the need for repetitive console access.
Features
- Intuitive Commands:
ec2ctl start dev-server,ec2ctl stop all,ec2ctl status backend-group. - Flexible Configuration: Manage instances by name or group using a simple
config.yamlfile. - Enhanced User Experience: Supports
--dry-run,--verbose, and--yesoptions. - Robust Error Handling: Provides clear messages for AWS authentication, instance state, and configuration issues.
- SSH Connection: Connect directly to instances, with optional automatic stopping on disconnect.
Installation
Prerequisites
- Python 3.7+
pip(Python package installer)- AWS CLI configured with your credentials (
aws configure)
Install ec2ctl
You can install ec2ctl directly from PyPI using pip:
pip install ec2ctl
For Development
If you plan to contribute or modify the source code, you can install it in editable mode:
git clone https://github.com/eehwan/ec2-control.git
cd ec2-control
pip install -e .
This allows changes to the source code to be immediately reflected without reinstallation.
Configuration
ec2ctl uses a YAML configuration file located at ~/.ec2ctl/config.yaml. You can generate a default configuration file by running:
ec2ctl init
config.yaml Structure
default_profile: default
default_region: ap-northeast-2
instances:
dev-server:
id: i-0abc1234567890
ssh_user: ec2-user
ssh_key_path: ~/.ssh/id_rsa
backend-api:
- id: i-01aaa111aaa
ssh_user: ubuntu
ssh_key_path: ~/.ssh/backend_key.pem
- id: i-01bbb222bbb
ssh_user: ubuntu
ssh_key_path: ~/.ssh/backend_key.pem
staging: i-0123staging456 # Simple ID definition still supported
default_profile: (Optional) Your default AWS profile name. Defaults todefault.default_region: (Optional) Your default AWS region. Defaults toap-northeast-2.instances: A map of instance names or group names to their corresponding EC2 instance IDs and optional SSH details.- Single instance with SSH details:
dev-server: { id: ..., ssh_user: ..., ssh_key_path: ... } - Instance group with SSH details:
backend-api: [ { id: ..., ssh_user: ..., ssh_key_path: ... }, ... ] - Simple ID definition is still supported:
staging: i-0123staging456
- Single instance with SSH details:
Usage
All commands support --profile, --region, --dry-run, and --verbose options. Commands that modify state also support --yes (-y).
ec2ctl init [--yes]
Initializes the default config.yaml file.
ec2ctl init
# Overwrite without confirmation
ec2ctl init --yes
ec2ctl list
Lists all EC2 instances and groups configured in ~/.ec2ctl/config.yaml.
ec2ctl list
ec2ctl start [name|group]
Starts the specified EC2 instance(s).
ec2ctl start dev-server
ec2ctl start backend-api
ec2ctl stop [name|group]
Stops the specified EC2 instance(s).
ec2ctl stop dev-server
ec2ctl stop backend-api
ec2ctl status [name|group|all]
Gets the current status of the specified EC2 instance(s).
ec2ctl status dev-server
ec2ctl status all
ec2ctl connect [name] [--user USER] [--key KEY_PATH] [--keep-running]
Connects to an EC2 instance via SSH, starting it if necessary. By default, the instance will be stopped when the SSH session disconnects.
name: The name of the instance or group as defined inconfig.yaml.--user USER: Override the SSH user defined in config.--key KEY_PATH: Override the path to the SSH private key file defined in config.--keep-running: Keep the instance running after the SSH session disconnects.
# Connect to dev-server, stop on disconnect (default)
ec2ctl connect dev-server
# Connect to dev-server, keep running on disconnect
ec2ctl connect dev-server --keep-running
# Connect with overridden user and key
ec2ctl connect dev-server --user admin --key ~/.ssh/my_custom_key.pem
Error Handling & Troubleshooting
ec2ctl provides informative error messages for common issues:
- Config file not found: Run
ec2ctl initto create the default configuration. - Instance/Group not found: Ensure the name is correctly spelled and defined in
config.yaml. - AWS Authentication/Authorization issues: Check your AWS CLI configuration (
aws configure) and IAM policies (e.g.,ec2:StartInstances,ec2:StopInstances,ec2:DescribeInstances). - Incorrect Instance State: Attempting to start an already running instance, or stop an already stopped instance.
- SSH Connection Issues: Ensure the instance has a public IP, security groups allow SSH (port 22), and the SSH key path/permissions are correct.
Contributing
Contributions are welcome! Please feel free to open issues or submit pull requests.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ec2ctl-0.1.1.tar.gz.
File metadata
- Download URL: ec2ctl-0.1.1.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b1cd0f53be8c072ffb84ed1af9834b2d5548cf1957a7fc72c7b48ab7523efe5
|
|
| MD5 |
e6db9d7ad80063c57d154c09b11dfb79
|
|
| BLAKE2b-256 |
af48f92223de24748486ff5803d1c6a4f49bff7d0a300b360847a026ee227ae1
|
File details
Details for the file ec2ctl-0.1.1-py3-none-any.whl.
File metadata
- Download URL: ec2ctl-0.1.1-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dfff96431ca78c874c985f8dea1168c121849af3e7a62899d7208c8cf29885cf
|
|
| MD5 |
14e8c792bc6bcc4f26771edbdb5b0b29
|
|
| BLAKE2b-256 |
bad2b2d893eff4d578b87e2d10d521a91eea2e41064d35ae1cc74c095932b816
|