provider "aws" {
  region = var.aws_region
}

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

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

    frontend-stripo-custom-blocks = {
      branch_protection_enabled        = true
      branch_protection_enforce_admins = true
      repo_auto_init                   = true
      archived_repository              = false
      github_code_owner_reviews        = false
      visibility                       = "private"
      description                      = "Common repo for Stripo custom blocks"
      has_downloads                    = false,
      homepage_url                     = "https://github.com/theorchard/${var.service_name}"
    }
  }

  application_family = var.application_family
}
