Skip to content

Instantly share code, notes, and snippets.

@tuanchris
Last active August 15, 2020 06:59
Show Gist options
  • Save tuanchris/7a7107212b9bca8ff2dba1ec32c8b468 to your computer and use it in GitHub Desktop.
Save tuanchris/7a7107212b9bca8ff2dba1ec32c8b468 to your computer and use it in GitHub Desktop.
cloud-iac
# Project definition
resource "google_project" "data-lake" {
name = "Data Lake"
project_id = "cloud-iac-data-lake" # Replace with an unique project ID
billing_account = "" # Replace with your billing ID
}
resource "google_project" "data-warehouse" {
name = "Data Warehouse"
project_id = "cloud-iac-data-warehouse" # Replace with an unique project ID
billing_account = "" # Replace with your billing ID
}
resource "google_project" "data-marts" {
name = "Data Marts"
project_id = "cloud-iac-data-marts" # Replace with an unique project ID
billing_account = "" # Replace with your billing ID
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment