provider "aws" {
  region = var.aws_region
}

terraform {
  backend "s3" {
    bucket  = "orcd-terraform-state"
    encrypt = "true"
    key     = "prod/github/lambda-feed-status-notifier/terraform.tfstate"
    region  = "us-east-1"
  }
}

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

  repository_name            = "lambda-feed-status-notifier"
  description                = "AWS Lambda lambda-feed-status-notifier repo"
  default_code_owner         = "data-platform"
  application_family         = "data-platform"
  branch_protection_patterns = ["master"]
}
