Last active
February 5, 2022 17:34
-
-
Save davidvpe/e1341d4e07bb1e30ec5981834d24f00b to your computer and use it in GitHub Desktop.
Medium AWS 1
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 { | |
backend "http" { | |
} | |
required_providers { | |
aws = { | |
source = "hashicorp/aws" | |
version = "3.74.0" | |
} | |
cloudflare = { | |
source = "cloudflare/cloudflare" | |
version = "~> 3.0" | |
} | |
} | |
} | |
provider "cloudflare" { | |
api_client_logging = true | |
} | |
provider "aws" { | |
region = "us-east-1" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment