How to move a Terraform state from one S3 bucket to another? May 21, 2024 Steps: $ terraform init $ terraform state pull > terraform.tfstate $ aws s3 cp --sse AES256 terraform.tfstate s3://NEWBUCKET/NEWPATH Now update the terraform backend to point to the new S3 bucket. Then run: $ terraform init -reconfigure