Configure Terraform Backend
Create a GCS bucket for Terraform state storage:
gsutil mb gs://your-terraform-state-bucketUpdate
bucketinbackend.tfwith your bucket name:terraformterraform { backend "gcs" { bucket = "your-terraform-state-bucket" prefix = "logscale/gcp/terraform/tf.state" } }Update
logscale_gcp_tf_state_bucketinvariables.tfwith your bucket name:terraformlogscale_gcp_tf_state_bucket = "your-terraform-state-bucket"