Last active
October 31, 2023 20:43
-
-
Save Jojoooo1/2a7dc7b7bcec2df20a7f39d7b815f327 to your computer and use it in GitHub Desktop.
DNS 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/projects/commons/dns" | |
} | |
required_providers { | |
google = { | |
source = "hashicorp/google" | |
version = ">= 5.4" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment