Skip to content

Instantly share code, notes, and snippets.

@Gatsby-Lee
Last active May 30, 2022 23:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gatsby-Lee/d9b1cdbedbdfb7b88c0d4334b70ee9aa to your computer and use it in GitHub Desktop.
Save Gatsby-Lee/d9b1cdbedbdfb7b88c0d4334b70ee9aa to your computer and use it in GitHub Desktop.
# https://github.com/hashicorp/terraform-provider-google/blob/main/CHANGELOG.md
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.22"
}
}
}
provider "google" {
project = "wowbro-playground"
region = "us-central1"
}
resource "google_storage_bucket" "gcs_wowbro_terraform_us_central_1" {
name = "wowbro_terraform_us_central_1"
force_destroy = false
location = "US-CENTRAL1"
storage_class = "STANDARD"
versioning {
enabled = true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment