# Terraform backends cannot contain interpolations
terraform {
  backend "s3" {
    bucket  = "orcd-terraform-state"
    key     = "prod/github/examples/terraform.tfstate"
    region  = "us-east-1"
    encrypt = "true"
  }
}

module "github_repositories" {
  source = "git@github.com:theorchard/terraform-github.git//?ref=6.0.2"

  repository_name           = "github-repository-name"
  description               = "Description for the repository."
  default_code_owner        = "default-code-owner" # Must be a valid GitHub team slug
  application_family        = var.application_family
}
