Created
June 1, 2022 23:11
-
-
Save Gatsby-Lee/036c25bad192280d3a9b013a6b71be8e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/hashicorp/terraform-provider-google/blob/main/CHANGELOG.md | |
terraform { | |
backend "gcs" { | |
bucket = "wowbro_terraform_us_central_1" | |
} | |
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" | |
uniform_bucket_level_access = true | |
versioning { | |
enabled = true | |
} | |
lifecycle_rule { | |
condition { | |
num_newer_versions = 3 | |
} | |
action { | |
type = "Delete" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment