Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Browse https://docs.cloudposse.com/components/library/ for pre-built components.
- `eks/cluster`, `eks/alb-controller` - Kubernetes
- `aurora-postgres`, `rds` - Databases
- `elasticache-redis` - Caching
- `ecs`, `ecs-service` - Container workloads
- `ecs` - Container workloads
- `s3-bucket`, `dynamodb`, `sqs-queue` - Storage and messaging
- `cloudwatch-logs`, `sns-topic` - Monitoring and notifications

Expand Down
10 changes: 5 additions & 5 deletions examples/snippets/.claude/skills/developing-stacks/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,12 @@ Components can inherit from multiple bases. Order matters - later items override
```yaml
components:
terraform:
my-ecs-service:
my-s3-bucket:
metadata:
component: ecs-service
component: s3-bucket
inherits:
- ecs-service/defaults # Base defaults
- ecs-service/web # Web-specific settings (overrides defaults)
- s3-bucket/defaults # Base defaults
- s3-bucket/web # Web-specific settings (overrides defaults)
vars:
service_name: my-app # Final override
```
Expand Down Expand Up @@ -258,7 +258,7 @@ Stack files are organized by layer:
| ----------------- | ---------------------------------------- | --------------------------- |
| `foundation.yaml` | Core infrastructure (VPC, DNS, TGW) | vpc, dns-delegated, bastion |
| `platform.yaml` | Platform services (ECS, RDS, monitoring) | ecs, aurora-postgres, alb |
| `app.yaml` | Application-specific resources | ecs-service, s3-bucket |
| `app.yaml` | Application-specific resources | s3-bucket |
| `network.yaml` | Network-specific (routes, peering) | vpc-routes, tgw-attachment |
| `monitor.yaml` | Observability (CloudWatch, Grafana) | managed-grafana, alarms |

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ workflows:
This workflow vendors all EKS related components to the latest provided version
steps:
- command: vendor pull --component ecs
- command: vendor pull --component ecs-service

deploy/ecs-acm:
description: |
Expand Down
Loading