Unable to set default location for the firebase project with firestore app engine

I’m unable to set default location for newly created firebase project but i’m able to set the same through console or directly hitting the firebase admin APIs. Not sure if this is a default or not. Error message doesn’t provide any indication of the org policy that is causing the issue. Error indicates it is trying to create storage bucket but resource i’m creating is the default location. Although script errors out it still sets the default location for the Firebase project and app engine associated with firestore DB. Any help is appreciated.

main.tf

resource “google_firebase_project” “firestore-db” {
provider = google-beta
project = “some name”
}

resource “google_firebase_project_location” “default” {
provider = google-beta
project = google_firebase_project.firestore-db.project_name
location_id = “us-central”
}

resource “google_app_engine_application” “firestore-app-engine” {
provider = google-beta
location_id = google_firebase_project_location.default.location_id
database_type = “CLOUD_FIRESTORE”
project = google_firebase_project.firestore-db.project_name
}

Error:
Error: Error waiting to create ProjectLocation: Error waiting for Creating ProjectLocation: Error code 9, message: Storage bucket can’t be created due to Org Policy enforcement.
510 on main.tf line 20, in resource “google_firebase_project_location” “default”:
511 20: resource “google_firebase_project_location” “default” {