IaNL: Infrastructure as Natural Language — AI agent that provisions AWS resources from plain English prompts using OpenTofu/Terraform.
Project description
IaNL: Infrastructure as Natural Language ☁️🤖
Why write HCL when you can just talk to your Cloud?
📖 Overview
IaNL (Infrastructure as Natural Language) is an AI-powered cloud architecture agent that bridges the gap between high-level architectural thoughts and fully deployed, secure AWS environments.
Instead of manually clicking through the AWS Console or meticulously writing HashiCorp Configuration Language (HCL) syntax, you simply describe your desired infrastructure in plain English. The IaNL Agent autonomously plans, provisions, self-heals, and manages the state lifecycle of your cloud resources using OpenTofu/Terraform under the hood.
✨ Core Capabilities
- 🧠 Natural Language to IaC: Converts plain English prompts into complete, multi-file Terraform modules (
main.tf,variables.tf,outputs.tf). - 🔐 Strategic Self-Permissioning: Runs pre-flight IAM checks. If it lacks necessary permissions (and is authorized to do so), it can self-bootstrap the required policies before touching infrastructure.
- 🛠️ Autonomous Self-Healing: If an AWS API error occurs during deployment (e.g., mismatched subnets, missing dependencies), the agent reads the
stderr, refactors the HCL code on the fly, and seamlessly re-applies. - 🛡️ Secure-by-Default: Automatically enforces AWS best practices. Routes credentials through AWS Secrets Manager, enforces KMS encryption, blocks S3 public access, and ensures least-privilege Security Groups.
- 💾 Full State Lifecycle Management: Powered by OpenTofu and an SQLite memory backend, the agent remembers previous sessions. You can ask it to tear down specific environments gracefully without leaving orphaned resources.
🏗️ Tech Stack
- Orchestration: Python & LangGraph
- LLM Brain: Mistral Small (via
ChatMistralAI) - IaC Engine: OpenTofu / Terraform
- State Persistence: SQLite & Local Filesystem
- Cloud Provider: Amazon Web Services (AWS)
🚀 Example Usage
You don't write code; you start a conversation:
User: "Deploy a micro MySQL RDS instance. Generate a secure 16-character password automatically, store it in AWS Secrets Manager under the name 'db-creds', and configure the RDS instance to use that secret for its master password. "
What the Agent does autonomously:
- Verifies AWS credentials and Region availability.
- Generates a 10-resource Terraform module (VPC, Subnet, IGW, Route Table, Security Group, Keys, EC2).
- Executes
tofu init,plan, andapply. - Intercepts and fixes any dependency or network mapping errors automatically.
- Saves the
.pemfile locally with secure0400permissions. - Outputs the exact
sshcommand for you to connect.
⚙️ Getting Started
Prerequisites
- Python 3.10+
- OpenTofu installed and added to PATH.
- AWS CLI installed and configured.
Installation
Install the package from PyPI:
pip install ianl-agent
Configuration
Create a .env file in your working directory (or export variables in your shell):
MISTRAL_API_KEY="your_mistral_api_key" # https://console.mistral.ai/
AWS_ACCESS_KEY_ID="your_aws_access_key"
AWS_SECRET_ACCESS_KEY="your_aws_secret_key"
If any of the above are missing, the CLI will prompt you securely at startup.
Run
ianl-agent
To resume a previous session:
ianl-agent --session-id <your-session-id>
For a full list of options:
ianl-agent --help
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 ianl_agent-0.1.10.tar.gz.
File metadata
- Download URL: ianl_agent-0.1.10.tar.gz
- Upload date:
- Size: 19.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
656f23a51a525a4faddd0f2ad611a78e003fae2a98b7267bc9ad394352c04bd6
|
|
| MD5 |
fb5a50f3ee7a134f4e3cba17aa0a6c1d
|
|
| BLAKE2b-256 |
ddd4c8950b39ed25518c40d6da507b7a2f50ad0cad9a4ab37aac461130a30d1a
|
File details
Details for the file ianl_agent-0.1.10-py3-none-any.whl.
File metadata
- Download URL: ianl_agent-0.1.10-py3-none-any.whl
- Upload date:
- Size: 20.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
746e6b3afa948b8702d123ee3ac5d16a19b323282f92f2ba8f71f713359934ad
|
|
| MD5 |
bee94a06b5c1b2e47cfe91f99f0e50fd
|
|
| BLAKE2b-256 |
8a1a4b9327030e00eb37a58a1e2ed7177f9a8e8ab672f825a0ac2b2cfe8f8dcf
|