@webframp/aws/terraform-drift
v2026.04.15.1
Terraform drift detection for AWS — compares Terraform state against live AWS resources to find configuration drift.
Orchestrates data collection from @webframp/terraform (state via CLI) and @webframp/aws/inventory + @webframp/aws/networking (live AWS via SDK), then produces a drift report highlighting missing, extra, and changed resources.
Quick Start
swamp extension pull @webframp/aws/terraform-drift
swamp model create @webframp/terraform tf-infra \
--global-arg workDir=/path/to/terraform/repo
swamp model create @webframp/aws/inventory aws-inventory \
--global-arg region=us-east-1
swamp model create @webframp/aws/networking aws-networking \
--global-arg region=us-east-1
swamp workflow run @webframp/terraform-driftRepository
https://github.com/webframp/swamp-extensions
Labels
Install
$ swamp extension pull @webframp/aws/terraform-driftCompare Terraform state against live AWS resources to detect drift. Collects Terraform-declared state via CLI, then gathers live AWS resource data, and produces a drift report.
Compares Terraform state against live AWS resources to identify configuration drift
Terraform drift detection for AWS — compares Terraform state against live AWS resources to find configuration drift. Orchestrates data collection from @webframp/terraform (state via CLI) and @webframp/aws/inventory + @webframp/aws/networking (live AWS via SDK), then produces a drift report highlighting missing, extra, and changed resources. ## Quick Start ```bash swamp extension pull @webframp/aws/terraform-drift swamp model create @webframp/terraform tf-infra \ --global-arg workDir=/path/to/terraform/repo swamp model create @webframp/aws/inventory aws-inventory \ --global-arg region=us-east-1 swamp model create @webframp/aws/networking aws-networking \ --global-arg region=us-east-1 swamp workflow run @webframp/terraform-drift ```