# Terraform: GCS bucket for Terraform state
resource "google_storage_bucket" "tf_state" {
name = "myorg-tf-state"
location = "EU"
force_destroy = false
versioning {
enabled = true
}
uniform_bucket_level_access = true
}What stands out
- Nothing in this text is addressed to the agent.
Configuration an agent may read and act on. Nothing in it is addressed to the agent.