In the step "Re-run terraform init. When you're prompted, agree to copy Terraform state to Cloud Storage."
I get the following error:
Initializing the backend...
Initializing modules...
╷
│ Error: Error inspecting states in the "local" backend:
│ querying Cloud Storage failed: storage: bucket doesn't exist```
Note that in the previous step (10), there was an error and there was no "UPDATE_PROJECTS_BACKEND" placement. Maybe this is related and I need to create a project manually to store Terraform state in a bucket?
### Expected behavior
State is saved to the bucket
### Observed behavior
_No response_
### Terraform Configuration
```hcl
My backend.tf looks like
terraform {
backend "gcs" {
bucket = "bkt-prj-b-seed-tfstate-7030"
prefix = "terraform/bootstrap/state"
}
}
TL;DR
In the step "Re-run terraform init. When you're prompted, agree to copy Terraform state to Cloud Storage."
I get the following error:
Additional information
No response