cloud-foundation-fabric/blueprints/data-solutions/data-platform-foundations
simonebruzzechesse d11c380aec
Format python files in blueprints (#2079)
* format python files in blueprints
* update check on blueprints python code
* update python linter in CI workflow
2024-02-15 09:37:49 +01:00
..
demo Format python files in blueprints (#2079) 2024-02-15 09:37:49 +01:00
images [Feature] Update data platform blue print with Dataflow Flex template (#1105) 2023-02-06 07:35:40 +01:00
01-dropoff.tf Fix Data platform foundation (#1992) 2024-01-20 08:49:46 +01:00
02-load.tf Fix Data platform foundation (#1992) 2024-01-20 08:49:46 +01:00
03-composer.tf versions.tf maintenance + copyright notice bump (#1782) 2023-10-20 18:17:47 +02:00
03-orchestration.tf Fix Data platform foundation (#1992) 2024-01-20 08:49:46 +01:00
04-transformation.tf Fix Data platform foundation (#1992) 2024-01-20 08:49:46 +01:00
05-datawarehouse.tf Fix Data platform foundation (#1992) 2024-01-20 08:49:46 +01:00
06-common.tf Fix Data platform foundation (#1992) 2024-01-20 08:49:46 +01:00
07-exposure.tf Fix Data platform foundation (#1992) 2024-01-20 08:49:46 +01:00
IAM.md Update IAM.md 2023-04-06 13:53:46 +02:00
README.md Ensure data platform service accounts meet FAST requirements (#2016) 2024-01-28 14:00:32 +01:00
backend.tf.sample versions.tf maintenance + copyright notice bump (#1782) 2023-10-20 18:17:47 +02:00
locals-01-dropoff.tf IAM interface refactor (#1595) 2023-08-20 09:44:20 +02:00
locals-02-load.tf IAM interface refactor (#1595) 2023-08-20 09:44:20 +02:00
locals-03-orchestration.tf IAM interface refactor (#1595) 2023-08-20 09:44:20 +02:00
locals-04-transformation.tf IAM interface refactor (#1595) 2023-08-20 09:44:20 +02:00
locals-05-datawarehouse.tf Fix data platform roles (#1725) 2023-10-04 07:31:40 +02:00
locals-06-common.tf IAM interface refactor (#1595) 2023-08-20 09:44:20 +02:00
main.tf Extend FAST to support different principal types (#2064) 2024-02-12 14:35:30 +01:00
outputs.tf versions.tf maintenance + copyright notice bump (#1782) 2023-10-20 18:17:47 +02:00
variables.tf Fix Data platform foundation (#1992) 2024-01-20 08:49:46 +01:00

README.md

Data Platform

This module implements an opinionated Data Platform Architecture that creates and setup projects and related resources that compose an end-to-end data environment.

For a minimal Data Platform, please refer to the Minimal Data Platform blueprint.

The code is intentionally simple, as it's intended to provide a generic initial setup and then allow easy customizations to complete the implementation of the intended design.

The following diagram is a high-level reference of the resources created and managed here:

Data Platform architecture overview

A demo Airflow pipeline is also part of this blueprint: it can be built and run on top of the foundational infrastructure to verify or test the setup quickly.

Design overview and choices

Despite its simplicity, this stage implements the basics of a design that we've seen working well for various customers.

The approach adapts to different high-level requirements:

  • boundaries for each step
  • clearly defined actors
  • least privilege principle
  • rely on service account impersonation

The code in this blueprint doesn't address Organization-level configurations (Organization policy, VPC-SC, centralized logs). We expect those elements to be managed by automation stages external to this script like those in FAST and this blueprint deployed on top of them as one of the stages.

Project structure

The Data Platform is designed to rely on several projects, one project per data stage. The stages identified are:

  • drop off
  • load
  • data warehouse
  • orchestration
  • transformation
  • exposure

This separation into projects allows adhering to the least-privilege principle by using project-level roles.

The script will create the following projects:

  • Drop off Used to store temporary data. Data is pushed to Cloud Storage, BigQuery, or Cloud PubSub. Resources are configured with a customizable lifecycle policy.
  • Load Used to load data from the drop off zone to the data warehouse. The load is made with minimal to zero transformation logic (mainly cast). Anonymization or tokenization of Personally Identifiable Information (PII) can be implemented here or in the transformation stage, depending on your requirements. The use of Cloud Dataflow templates is recommended. When you need to handle workloads from different teams, if strong role separation is needed between them, we suggest to customize the script and have separate Load projects.
  • Data Warehouse Several projects distributed across 3 separate layers, to host progressively processed and refined data:
    • Landing - Raw data Structured Data, stored in relevant formats: structured data stored in BigQuery, unstructured data stored on Cloud Storage with additional metadata stored in BigQuery (for example pictures stored in Cloud Storage and analysis of the images for Cloud Vision API stored in BigQuery).
    • Curated - Cleansed, aggregated and curated data
    • Confidential - Curated and unencrypted layer
  • Orchestration Used to host Cloud Composer, which orchestrates all tasks that move data across layers.
  • Transformation Used to move data between Data Warehouse layers. We strongly suggest relying on BigQuery Engine to perform the transformations. If BigQuery doesn't have the features needed to perform your transformations, you can use Cloud Dataflow with Cloud Dataflow templates. This stage can also optionally anonymize or tokenize PII. When you need to handle workloads from different teams, if strong role separation is needed between them, we suggest to customize the script and have separate Transformation projects.
  • Exposure Used to host resources that share processed data with external systems. Depending on the access pattern, data can be presented via Cloud SQL, BigQuery, or Bigtable. For BigQuery data, we strongly suggest relying on Authorized views.

Roles

We assign roles on resources at the project level, granting the appropriate roles via groups (humans) and service accounts (services and applications) according to best practices.

Service accounts

Service account creation follows the least privilege principle, performing a single task which requires access to a defined set of resources. The table below shows a high level overview of roles for each service account on each data layer, using READ or WRITE access patterns for simplicity. For detailed roles please refer to the code.

Service Account Drop off DWH Landing DWH Curated DWH Confidential
drop-sa WRITE - - -
load-sa READ READ/WRITE - -
transformation-sa - READ/WRITE READ/WRITE READ/WRITE
orchestration-sa - - - -

A full reference of IAM roles managed by the Data Platform is available here.

Using of service account keys within a data pipeline exposes to several security risks deriving from a credentials leak. This blueprint shows how to leverage impersonation to avoid the need of creating keys.

User groups

User groups provide a stable frame of reference that allows decoupling the final set of permissions from the stage where entities and resources are created, and their IAM bindings defined.

We use three groups to control access to resources:

  • Data Engineers They handle and run the Data Hub, with read access to all resources in order to troubleshoot possible issues with pipelines. This team can also impersonate any service account.
  • Data Analysts. They perform analysis on datasets, with read access to the Data Warehouse Confidential project, and BigQuery READ/WRITE access to the playground project.
  • Data Security:. They handle security configurations related to the Data Hub. This team has admin access to the common project to configure Cloud DLP templates or Data Catalog policy tags.

The table below shows a high level overview of roles for each group on each project, using READ, WRITE and ADMIN access patterns for simplicity. For detailed roles please refer to the code.

Group Drop off Load Transformation DHW Landing DWH Curated DWH Confidential Orchestration Common
Data Engineers ADMIN ADMIN ADMIN ADMIN ADMIN ADMIN ADMIN ADMIN
Data Analysts - - - - - READ - -
Data Security - - - - - - - -

You can configure groups via the groups variable.

Virtual Private Cloud (VPC) design

As is often the case in real-world configurations, this blueprint accepts as input an existing Shared-VPC via the network_config variable. Make sure that the GKE API (container.googleapis.com) is enabled in the VPC host project.

If the network_config variable is not provided, one VPC will be created in each project that supports network resources (load, transformation and orchestration).

IP ranges and subnetting

To deploy this blueprint with self-managed VPCs you need the following ranges:

  • one /24 for the load project VPC subnet used for Cloud Dataflow workers
  • one /24 for the transformation VPC subnet used for Cloud Dataflow workers
  • one /24 range for the orchestration VPC subnet used for Composer workers
  • one /22 and one /24 ranges for the secondary ranges associated with the orchestration VPC subnet

If you are using Shared VPC, you need one subnet with one /22 and one /24 secondary range defined for Composer pods and services.

In both VPC scenarios, you also need these ranges for Composer:

  • one /24 for Cloud SQL
  • one /28 for the GKE control plane

Resource naming conventions

Resources follow the naming convention described below.

  • prefix-layer for projects
  • prefix-layer-product for resources
  • prefix-layer[2]-gcp-product[2]-counter for services and service accounts

Encryption

We suggest a centralized approach to key management, where Organization Security is the only team that can access encryption material, and keyrings and keys are managed in a project external to the Data Platform.

Centralized Cloud Key Management high-level diagram

To configure the use of Cloud KMS on resources, you have to specify the key id on the service_encryption_keys variable. Key locations should match resource locations. Example:

service_encryption_keys = {
    bq       = "KEY_URL_MULTIREGIONAL"
    composer = "KEY_URL_REGIONAL"
    dataflow = "KEY_URL_REGIONAL"
    storage  = "KEY_URL_MULTIREGIONAL"
    pubsub   = "KEY_URL_MULTIREGIONAL"
}

This step is optional and depends on customer policies and security best practices.

Data Anonymization

We suggest using Cloud Data Loss Prevention to identify/mask/tokenize your confidential data.

While implementing a Data Loss Prevention strategy is out of scope for this blueprint, we enable the service in two different projects so that Cloud Data Loss Prevention templates can be configured in one of two ways:

Cloud Data Loss Prevention resources and templates should be stored in the security project:

Centralized Cloud Data Loss Prevention high-level diagram

You can find more details and best practices on using DLP to De-identification and re-identification of PII in large-scale datasets in the GCP documentation.

Data Catalog

Data Catalog helps you to document your data entry at scale. Data Catalog relies on tags and tag template to manage metadata for all data entries in a unified and centralized service. To implement column-level security on BigQuery, we suggest to use Tags and Tag templates.

The default configuration will implement 3 tags:

  • 3_Confidential: policy tag for columns that include very sensitive information, such as credit card numbers.
  • 2_Private: policy tag for columns that include sensitive personal identifiable information (PII) information, such as a person's first name.
  • 1_Sensitive: policy tag for columns that include data that cannot be made public, such as the credit limit.

Anything that is not tagged is available to all users who have access to the data warehouse.

For the purpose of the blueprint no groups has access to tagged data. You can configure your tags and roles associated by configuring the data_catalog_tags variable. We suggest using the "Best practices for using policy tags in BigQuery" article as a guide to designing your tags structure and access pattern.

How to run this script

To deploy this blueprint on your GCP organization, you will need

  • a folder or organization where new projects will be created
  • a billing account that will be associated with the new projects
  • user groups defined within the organization (provided as organization_domain variable):
    • gcp-data-analysts
    • gcp-data-engineers
    • gcp-data-security

The Data Platform is meant to be executed by a Service Account (or a regular user) having this minimal set of permission:

  • Billing account
    • roles/billing.user
  • Folder level:
    • roles/resourcemanager.folderAdmin
    • roles/resourcemanager.projectCreator
  • KMS Keys (If CMEK encryption in use):
    • roles/cloudkms.admin or a custom role with cloudkms.cryptoKeys.getIamPolicy, cloudkms.cryptoKeys.list, cloudkms.cryptoKeys.setIamPolicy permissions
  • Shared VPC host project (if configured):\
    • roles/compute.xpnAdmin on the host project folder or org
    • roles/resourcemanager.projectIamAdmin on the host project, either with no conditions or with a condition allowing delegated role grants for roles/compute.networkUser, roles/composer.sharedVpcAgent, roles/container.hostServiceAgentUser

Variable configuration

There are three sets of variables you will need to fill in:

prefix                  = "dat-plat"
project_config = {
    parent              = "folders/1111111111"
    billing_account_id  = "1111111-2222222-33333333"
}
organization_domain     = "domain.com"                                       

For more fine details check variables on variables.tf and update according to the desired configuration. Remember to create team groups described below.

Once the configuration is complete, run the project factory by running

terraform init
terraform apply

How to use this blueprint from Terraform

While this blueprint can be used as a standalone deployment, it can also be called directly as a Terraform module by providing the variables values as show below:

module "data-platform" {
  source              = "./fabric/blueprints/data-solutions/data-platform-foundations"
  organization_domain = "example.com"
  project_config = {
    billing_account_id = "123456-123456-123456"
    parent             = "folders/12345678"
  }
  # test 12-chars long prefix for FAST mt compatibility
  prefix = "test-0123456"
}
# tftest modules=43 resources=293

Customizations

Create Cloud Key Management keys as part of the Data Platform

To create Cloud Key Management keys in the Data Platform you can uncomment the Cloud Key Management resources configured in the 06-common.tf file and update Cloud Key Management keys pointers on local.service_encryption_keys.* to the local resource created.

Assign roles at BQ Dataset level

To handle multiple groups of data-analysts accessing the same Data Warehouse layer projects but only to the dataset belonging to a specific group, you may want to assign roles at BigQuery dataset level instead of at project-level. To do this, you need to remove IAM binging at project-level for the data-analysts group and give roles at BigQuery dataset level using the iam variable on bigquery-dataset modules.

Project Configuration

The solution can be deployed by creating projects on a given parent (organization or folder) or on existing projects. Configure variable project_config accordingly.

When you rely on existing projects, the blueprint is designed to rely on different projects configuring IAM binding with an additive approach. For discovery or experimentation purposes, you may also configure project_config.project_ids to point different projects to one project with the granularity you need. For example, deploy resources from the 'load' project with resources in the 'transformation' project.

Once you have identified the required project granularity for your use case, we suggest adapting the terraform script accordingly and relying on authoritative IAM binding.

Demo pipeline

The application layer is out of scope of this script. As a demo purpuse only, several Cloud Composer DAGs are provided. Demos will import data from the drop off area to the Data Warehouse Confidential dataset suing different features.

You can find examples in the [demo](./demo) folder.

Cleanup

If you want to destroy the Data Platform deployment, follow these steps.

ATTENTION: The following procedure will permanently delete all of your data in an irreversible manner.

# remove GCS buckets and BQ dataset manually. Projects will be destroyed anyway
for x in $(terraform state list | grep google_storage_bucket.bucket); do  
  terraform state rm "$x"; 
done

for x in $(terraform state list | grep google_bigquery_dataset); do  
  terraform state rm "$x"; 
done

terraform destroy

Variables

name description type required default
organization_domain Organization domain. string
prefix Prefix used for resource names. string
project_config Provide 'billing_account_id' value if project creation is needed, uses existing 'project_ids' if null. Parent is in 'folders/nnn' or 'organizations/nnn' format. object({…})
composer_config Cloud Composer config. object({…}) {…}
data_catalog_tags List of Data Catalog Policy tags to be created with optional IAM binging configuration in {tag => {ROLE => [MEMBERS]}} format. map(object({…})) {…}
deletion_protection Prevent Terraform from destroying data storage resources (storage buckets, GKE clusters, CloudSQL instances) in this blueprint. When this field is set in Terraform state, a terraform destroy or terraform apply that would delete data storage resources will fail. bool false
groups User groups. map(string) {…}
location Location used for multi-regional resources. string "eu"
network_config Shared VPC network configurations to use. If null networks will be created in projects with preconfigured values. object({…}) null
project_services List of core services enabled on all projects. list(string) […]
project_suffix Suffix used only for project ids. string null
region Region used for regional resources. string "europe-west1"
service_encryption_keys Cloud KMS to use to encrypt different services. Key location should match service region. object({…}) null

Outputs

name description sensitive
bigquery-datasets BigQuery datasets.
demo_commands Demo commands. Relevant only if Composer is deployed.
df_template Dataflow template image and template details.
gcs-buckets GCS buckets.
kms_keys Cloud MKS keys.
projects GCP Projects information.
vpc_network VPC network.
vpc_subnet VPC subnetworks.

TODOs

Features to add in future releases:

  • Add example on how to use Cloud Data Loss Prevention
  • Add solution to handle Tables, Views, and Authorized Views lifecycle
  • Add solution to handle Metadata lifecycle