Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 650 Bytes

File metadata and controls

41 lines (28 loc) · 650 Bytes
  • Clean all components across all stacks
 $ atmos terraform clean
  • Clean a specific component
 $ atmos terraform clean vpc
  • Clean a component in a specific stack
 $ atmos terraform clean vpc -s prod-ue2
  • Force clean without confirmation
 $ atmos terraform clean vpc -s prod-ue2 --force
  • Clean everything including state files
 $ atmos terraform clean vpc -s prod-ue2 --everything
  • Dry run to see what would be deleted
 $ atmos terraform clean --dry-run
  • Skip deleting the lock file
 $ atmos terraform clean vpc -s prod-ue2 --skip-lock-file