mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 21:41:44 +03:00
17 lines
271 B
Terraform
17 lines
271 B
Terraform
|
locals {
|
||
|
region = "us-central1"
|
||
|
}
|
||
|
|
||
|
provider "google" {
|
||
|
region = local.region
|
||
|
}
|
||
|
|
||
|
# Your name, which will prefix all resources so we know who left instances lying around.
|
||
|
variable "name" {
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
data "google_project" "project" {
|
||
|
provider = google-beta
|
||
|
}
|