cloudformation

Provision, update, and delete AWS resources using declarative CloudFormation templates.

Updated Feb 28, 2026
One-click install
npx skills add https://github.com/tjl8787/mycodex-skills --skill cloudformation-tjl8787
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cloudformation
Source: https://github.com/tjl8787/mycodex-skills/tree/main/skills/cloudformation
Command: npx skills add https://github.com/tjl8787/mycodex-skills --skill cloudformation-tjl8787

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill simplifies and standardizes the deployment and management of AWS infrastructure by enabling you to define resources in code, ensuring consistency and repeatability across environments.

Core Features & Use Cases

  • Infrastructure as Code (IaC): Define your AWS resources using declarative YAML or JSON templates.
  • Automated Deployments: Provision, update, and delete entire stacks of resources with a single command.
  • Use Case: Deploy a new VPC, subnets, security groups, and an EC2 instance with a single CloudFormation template, ensuring all components are correctly configured and interconnected.

Quick Start

Use the cloudformation skill to deploy the template located at /path/to/your/template.yaml.

Frequently Asked Questions about cloudformation

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage AWS infrastructure as code for automated deployments?

AWS infrastructure as code is managed using declarative templates to provision, update, and delete resources. This approach enables automated deployments and ensures consistency across environments by defining resources in code.

Can I provision multiple AWS services like EC2 and VPC together in one deployment?

Yes, you can provision multiple AWS services together. A single template can deploy complex stacks involving EC2, S3, DynamoDB, Lambda, and VPCs, ensuring all components are correctly configured and interconnected.

What template formats are supported for AWS infrastructure as code?

AWS infrastructure as code supports declarative YAML or JSON templates. These formats allow you to define resources, enabling consistency and repeatability across environments.

How do I deploy an entire VPC with subnets and security groups using infrastructure as code?

Deploying a VPC with subnets and security groups requires defining the resources in a declarative template. A single command then provisions, updates, or deletes the entire stack of resources automatically.

What's the best way to standardize AWS infrastructure across multiple environments?

The best way to standardize AWS infrastructure is using infrastructure as code. Defining resources in declarative templates simplifies deployment and ensures consistency and repeatability across environments.

Why use infrastructure as code instead of manual AWS resource provisioning?

Infrastructure as code replaces manual provisioning with declarative templates for automated deployment. This ensures consistency, reduces configuration errors, and allows entire resource stacks to be managed with a single command.