terraform {
  backend "s3" {
    bucket  = "orcd-terraform-state"
    key     = "prod/github/ows-sdlc-training/dzink/terraform.tfstate"
    region  = "us-east-1"
    encrypt = "true"
  }
}

provider "github" {
  organization = var.github_organization
  app_auth {}
}
