Skip to main content

IC CLI Tool (Infrastructure Commander)

PyPI version Python 3.9+ License: MIT

A comprehensive, production-grade Infrastructure Command Line Interface tool for managing multi-cloud infrastructure and server components across multiple platforms. IC CLI provides unified access to AWS, Tencent Cloud, GCP, Oracle Cloud Infrastructure (OCI), CloudFlare, and SSH server management with rich progress indicators and secure configuration management.


✨ Key Features

  • 🚀 Multi-Cloud Support: AWS, Tencent Cloud, GCP, OCI, CloudFlare, and SSH server management
  • 📊 Rich Progress Bars: Real-time progress indicators for all long-running operations across accounts and regions
  • 🔒 Secure Configuration: Modern YAML-based configuration (~/.ic/config/) and native credential files (~/.aws/config, ~/.tencent/credentials)
  • 🌍 Multi-Account / Multi-Region: Concurrent querying across multiple cloud accounts and regions with STS / CAM AssumeRole support
  • 🎨 Beautiful Terminal UI: Rich terminal output with tables, colors, JSON formatting, and tree diagrams
  • ⚡ High Performance: Optimized async and concurrent execution for fast resource discovery
  • 🛡️ Security First: Built-in credential masking, secret scanning, and pre-commit hook support

📦 Supported Platforms & Services

1. 🟧 AWS Services (Production Ready)

  • Compute: EC2 instances, ECS services/tasks, EKS clusters/nodes/pods, Fargate profiles
  • Storage & DB: S3 buckets (with tagging compliance checks), RDS instances & clusters
  • Networking: VPC, Subnets, Gateways, Load Balancers (ALB/NLB with listener rules, health check path & target health analysis), Security Groups (with Ingress & Egress rule analysis & tree view), VPN connections
  • Health & Maintenance: AWS Health Dashboard EC2 scheduled reboot maintenance check (ic aws healthdashboard reboot)
  • Integrations: CloudFront distributions, MSK Kafka brokers, CodePipeline build/deploy status, Profile management

2. 🟦 Tencent Cloud Services (Production Ready)

  • Compute: CVM instances (with CPU, Mem, Disk, IP, SGs), Lighthouse lightweight application servers
  • Containers: TKE (Tencent Kubernetes Engine) clusters & node details
  • Networking: VPC, Subnets, NAT Gateways, CLB (Load Balancers - with listener rules, health check path & target health analysis), Security Groups (with Ingress/Egress rules & tree view)
  • Authentication: Multi-account STS AssumeRole support, Profile management (ic tencent profile info via ~/.tencent/credentials)

3. 🟩 GCP Services (Production Ready)

  • Compute Engine: VM instances with status, zone, and network interface details
  • Cloud Storage: Bucket lists, location, and storage class information
  • VPC Network: Subnets, routes, and firewall rule visibility
  • GKE: Kubernetes Engine clusters and node pool configurations
  • Cloud SQL: Database instances, engines, and status

4. 🟥 Oracle Cloud Infrastructure (OCI) (Production Ready)

  • Compute & Containers: VM instances, Container instances (ACI)
  • Networking: VCN, Subnets, Load Balancers, Network Security Groups (NSG)
  • Storage: Block Volumes, Object Storage buckets
  • IAM & Cost: Compartment hierarchy, IAM Policy search/validation, Cost usage & billing credits

5. 🟧 CloudFlare (Production Ready)

  • DNS & Zones: Zone listings, DNS record management, and account filtering

6. 🟦 SSH Server Management (Production Ready)

  • Discovery: Automatic server registration, connection verification, and security filtering

📦 Installation

From PyPI (Recommended)

# Install the latest stable version (v1.3.1+)
pip install ic-code

# Verify installation
ic --version
ic --help

From Source (Development)

# Clone the repository
git clone https://github.com/dgr009/ic.git
cd ic

# Create and activate virtual environment
python -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate

# Install dependencies and local editable package
pip install -e .

# Verify installation
ic --version

⚙️ Configuration Setup

IC CLI uses a modern two-file configuration system located in ~/.ic/config/ for security:

~/.ic/config/
├── default.yaml        # Non-sensitive default settings
└── secrets.yaml        # Sensitive API keys, tokens, and profiles

1. Initialize Configuration

# Guided interactive configuration setup
ic config init

# Or generate template for specific clouds
ic config init --template aws
ic config init --template multi-cloud

2. Configure Credentials (~/.ic/config/secrets.yaml)

# AWS Configuration
aws:
  accounts:
    - "123456789012"
  profiles:
    default: "my-aws-profile"
  regions:
    - "ap-northeast-2"
    - "us-east-1"

# GCP Configuration
gcp:
  project_id: "my-gcp-project-id"
  credentials_file: "~/.config/gcloud/application_default_credentials.json"
  regions:
    - "asia-northeast3"
    - "us-central1"

# Oracle Cloud Infrastructure (OCI)
oci:
  config_file: "~/.oci/config"
  profile: "DEFAULT"
  compartments:
    - "ocid1.compartment.oc1..example"

# CloudFlare Configuration
cloudflare:
  api_token: "your-cloudflare-api-token"

# SSH Configuration
ssh:
  key_dir: "~/.ssh"
  skip_prefixes:
    - "bastion"
    - "jump"

3. Manage & Validate Config

# Show configuration (sensitive fields masked automatically)
ic config show

# Validate configuration structure and paths
ic config validate

🚀 Command Usage Examples

AWS Commands

# List EC2 instances across configured regions
ic aws ec2 info

# Security Group Info (Shows Ingress & Egress rules by default)
ic aws sg info

# Filter Security Groups for Ingress or Egress rules only
ic aws sg info --ingress    # Show Ingress rules only
ic aws sg info --egress     # Show Egress rules only

# Render Security Groups in visual tree structure with direction arrows (← Ingress, → Egress)
ic aws sg info -o tree

# S3 Bucket details and tag validation
ic aws s3 info
ic aws s3 tag_check

# EKS & ECS Cluster info
ic aws eks info
ic aws ecs info

Tencent Cloud Commands

# List CVM instances across accounts and regions
ic tencent cvm info
ic tencent cvm info -a my-account

# List Lighthouse lightweight instances
ic tencent lighthouse info

# Security Group Info (Tables and Tree view)
ic tencent sg info
ic tencent sg info -o tree

# Load Balancer (CLB) with listeners, health check path & target health
ic tencent clb info

# VPC, Subnets, NAT Gateways & TKE Clusters
ic tencent vpc info
ic tencent nat info
ic tencent tke info

# Check credentials and profiles (~/.tencent/credentials)
ic tencent profile info

GCP Commands

# Compute Engine VM instances
ic gcp compute info

# Cloud Storage buckets
ic gcp storage info

# VPC networks and subnets
ic gcp vpc info

# GKE Clusters
ic gcp gke info

# Cloud SQL databases
ic gcp sql info

OCI Commands

# Compute VM instances
ic oci vm info

# Virtual Cloud Networks
ic oci vcn info

# Load Balancers & Network Security Groups
ic oci lb info
ic oci nsg info

# Storage & Cost usage
ic oci volume info
ic oci cost usage

CloudFlare & SSH Commands

# CloudFlare Zones and DNS
ic cf zone info
ic cf dns info

# SSH Server discovery
ic ssh info

Security & Hook Commands

# Scan codebase for hardcoded secrets
ic security scan

# Install pre-commit security hooks
ic security install-hooks

🧪 Testing & Validation

# Run unit & integration test suites
pytest tests/unit tests/integration

# Run End-to-End CLI validation
python tests/validation/end_to_end_cli_validation.py

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ic_code-1.3.1.tar.gz (485.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ic_code-1.3.1-py3-none-any.whl (493.6 kB view details)

Uploaded Python 3

File details

Details for the file ic_code-1.3.1.tar.gz.

File metadata

  • Download URL: ic_code-1.3.1.tar.gz
  • Upload date:
  • Size: 485.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ic_code-1.3.1.tar.gz
Algorithm Hash digest
SHA256 2177a47d4e35cab3a02a3d30bf6a367c97137f6fbbf3b144f4830613d6158654
MD5 a167c93b5dc28695b2f9f34a52bdc596
BLAKE2b-256 2410fb3e983c3783eb3163e6db0f10f81397a34bd13ac5e02b30047969e11674

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_code-1.3.1.tar.gz:

Publisher: publish-to-pypi.yml on dgr009/ic

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_code-1.3.1-py3-none-any.whl.

File metadata

  • Download URL: ic_code-1.3.1-py3-none-any.whl
  • Upload date:
  • Size: 493.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ic_code-1.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 91bd4e0975895ff4232a77bccff380a73d96b5bdb62a12957f44205dc5fe1076
MD5 e8c4b8d238b760ecbc6d45e6eb24858e
BLAKE2b-256 f4ee1ab99d5b887bd52dab09a364106e1691537f7ebde2742603da3e8bb3d658

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_code-1.3.1-py3-none-any.whl:

Publisher: publish-to-pypi.yml on dgr009/ic

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.5.3

2 files

1.5.2

2 files

1.5.0

2 files

1.3.5

2 files

1.3.4

2 files

This release

1.3.1 This release

2 files

1.2.9

2 files

1.2.8

2 files

1.2.7

2 files

1.2.6

2 files

1.2.5

2 files

1.2.4

2 files

1.2.3

2 files

1.2.2

2 files

1.2.1

2 files

1.1.10

2 files

1.1.8

2 files

1.1.7

2 files

1.1.6

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page