Local and Remote State Storage

Local State Storage

  • Save Terraform state locally on your system

  • Terraform default behaviour

Remote State Storage

  • Save state to remote data source -> Optional: AWS S3, Google Storage, Azure Blob ...

  • Allow sharing state files between distributed team

  • Allow locking state so that parallel execution doesn't coincide

  • Enables sharing "output" values with other Terraform configurations or code.

Last updated