aws-terraform

aws-terraform is a skill for Claude Code, Codex from eliecer2000/kiro-bootstrap. It costs 38 tokens per session (2,959 once invoked), scanned A, original, MIT.

A set of practices for managing Amazon Web Services infrastructure with Terraform, a tool that defines cloud resources in files. It covers reusable modules, shared state, tests, security, and refactoring.

In plain words
What is it for?
Use it to create Terraform modules, manage remote state, write infrastructure tests in .tftest.hcl files, refactor configurations, and follow HashiCorp's formatting and naming conventions.
Why use it?
It provides consistent rules for changing AWS infrastructure as code, including reviewing a plan before applying changes and keeping shared state safely.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create Terraform modules, manage remote state, write infrastructure tests in .tftest.hcl files, refactor configurations, and follow HashiCorp's formatting and naming conventions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/eliecer2000/kiro-bootstrap/aws-terraform
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add eliecer2000/kiro-bootstrap --skill aws-terraform
Clone the repo
git clone --depth 1 https://github.com/eliecer2000/kiro-bootstrap

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for aws-terraform

README.md
[![agentmods](https://agentmods.dev/badge/skills/eliecer2000/kiro-bootstrap/aws-terraform/github.svg)](https://agentmods.dev/skills/eliecer2000/kiro-bootstrap/aws-terraform)
Your own site
<a href="https://agentmods.dev/skills/eliecer2000/kiro-bootstrap/aws-terraform"><img src="https://agentmods.dev/badge/skills/eliecer2000/kiro-bootstrap/aws-terraform/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for aws-terraform

Your own site · 80×15
<a href="https://agentmods.dev/skills/eliecer2000/kiro-bootstrap/aws-terraform"><img src="https://agentmods.dev/badge/skills/eliecer2000/kiro-bootstrap/aws-terraform.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,959 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00038 $0.02959
Opus 5 $0.00019 $0.01479
Sonnet 5 $0.00008 $0.00592
Haiku 4.5 $0.00004 $0.00296

Measured 9d ago against content hash 8a6d133100c0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

aws-terraform scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/aws-terraform/SKILL.md · 436 lines

How it starts

The opening of the file, as written. The whole thing — 436 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AWS Terraform

Skill para desarrollo de infraestructura AWS con Terraform: módulos reutilizables, state remoto, style guide oficial de HashiCorp, testing con .tftest.hcl, seguridad, refactoring de módulos y estándares de IaC. Integra mejores prácticas de HashiCorp Agent Skills.

Principios fundamentales

  • Infraestructura como código: todo recurso AWS se define en Terraform. Cero recursos manuales en consola.
  • Módulos reutilizables: extraer patrones repetidos en módulos con interfaces claras (variables tipadas, outputs, validaciones).
  • State remoto obligatorio: S3 + DynamoDB para locking. Nunca state local en equipo.
  • Plan antes de apply: siempre revisar terraform plan antes de aplicar cambios.
  • Style guide de HashiCorp: seguir convenciones oficiales de formato, naming y organización.

Organización de archivos (HashiCorp Style Guide)

Archivo Propósito
terraform.tf Versión de Terraform y required_providers
providers.tf Configuración de providers
main.tf Recursos principales y data sources
variables.tf Variables de input (orden alfabético)
outputs.tf Outputs (orden alfabético)
locals.tf Valores locales calculados

Estructura de proyecto recomendada

infra/
├── environments/
│   ├── dev/
│   │   ├── terraform.tf
│   │   ├── providers.tf
│   │   ├── main.tf          # Llama a módulos
│   │   ├── variables.tf
│   │   ├── outputs.tf
│   │   └── terraform.tfvars
│   ├── staging/
│   └── prod/
├── modules/
│   ├── api/
│   │   ├── main.tf
│   │   ├── variables.tf
│   │   ├── outputs.tf
│   │   └── tests/
│   │       └── api_test.tftest.hcl
│   ├── data/
│   └── compute/
└── terraform.tf              # Version constraints compartidas

Style Guide (basado en HashiCorp oficial)

Formato y convenciones

  • 2 espacios por nivel de indentación (no tabs).
  • Alinear signos = en argumentos consecutivos.
  • Meta-arguments primero (count, for_each, depends_on), luego arguments, luego blocks, lifecycle al final.
  • Ejecutar terraform fmt -recursive antes de cada commit.

Read the full file on GitHub · 436 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 436 lines · 38 tokens per session scan A 8a6d133100c0

Subscribe to this mod's changes

aws-terraform is a skill published in the GitHub repository eliecer2000/kiro-bootstrap (9 stars, last pushed 5mo ago), licensed MIT. It adds 38 tokens to every session and 2,959 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.