provider "aws" {
  region = var.region
}

terraform {
  backend "s3" {
    bucket  = "prod-songwhip-terraform-state"
    key     = "prod/songwhip-analytics/terraform.tfstate"
    region  = "us-east-1"
    encrypt = "true"
  }
}

module "songwhip_analytics_sentry_project" {
  source = "git@github.com:theorchard/terraform-sentry.git?ref=3.0.0"

  environment        = var.environment
  platform           = "javascript"
  service_name       = var.service_name
  application_family = var.application_family
}
