forked from kriasoft/graphql-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproviders.tf
46 lines (40 loc) · 1.13 KB
/
providers.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Terraform Providers
# https://registry.terraform.io/browse/providers
terraform {
required_providers {
# Google Cloud Platform Provider
# https://registry.terraform.io/providers/hashicorp/google/latest/docs
# https://github.com/hashicorp/terraform-provider-google
google = {
source = "hashicorp/google"
version = "~> 4.8"
}
# Google Cloud Platfrom Provider (beta)
# https://registry.terraform.io/providers/hashicorp/google/latest/docs
# https://github.com/hashicorp/terraform-provider-google-beta
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.8"
}
# Cloudflare Provider
# https://registry.terraform.io/providers/cloudflare/cloudflare/latest/docs
# https://github.com/cloudflare/terraform-provider-cloudflare
cloudflare = {
source = "cloudflare/cloudflare"
version = "~> 3.7"
}
}
}
provider "google" {
project = var.project
region = var.region
zone = var.zone
}
provider "google-beta" {
project = var.project
region = var.region
zone = var.zone
}
provider "cloudflare" {
api_token = var.cloudflare_api_token
}