resource "google_storage_bucket" "bt_artifacts" {
  name     = "${local.name_prefix}-bt-archive"
  location = "us-east4"
}

resource "google_storage_bucket" "lambda_artifacts" {
  name     = "${local.name_prefix}-lambda-artifacts"
  location = "US"
}
