main.tf 307 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
terraform {
  required_version = ">= 0.12"
}

provider "google" {
  project = "devrel"
  region  = "us-west2"
}

provider "github" {
  organization = "influxdata"
12
  anonymous    = false
13 14 15 16 17 18 19 20
}

terraform {
  backend "gcs" {
    bucket = "influxdata-devrel-operations"
    prefix = "github.com/helm-charts"
  }
}