Created
November 1, 2023 20:07
-
-
Save Jojoooo1/873ecfff8b97b5ce2e5a27bb7b9072cc to your computer and use it in GitHub Desktop.
dns terraform provider
This file contains 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/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