Created
October 20, 2023 17:07
-
-
Save Jojoooo1/85ac9e297e312c25b525ac6452b76947 to your computer and use it in GitHub Desktop.
folders and policies terraform provider
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
terraform { | |
required_version = ">= 1.5.7" | |
backend "gcs" { | |
bucket = "<your-bucket-name>" | |
prefix = "terraform/state/folders-and-policies" | |
} | |
required_providers { | |
google = { | |
source = "hashicorp/google" | |
version = ">= 4.84.0" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment