diff --git a/transformations/aws/compliance-free/README.md b/transformations/aws/compliance-free/README.md index 9d9ea1774..26956f6ba 100644 --- a/transformations/aws/compliance-free/README.md +++ b/transformations/aws/compliance-free/README.md @@ -16,10 +16,36 @@ One of the below databases The pack contains the free version. +#### Running Your dbt Project + +Navigate to your dbt project directory, where your `dbt_project.yml` resides. + +If everything compiles without errors, you can then execute: + +```bash +dbt run +``` + +This command will run all your `dbt` models and create tables/views in your destination database as defined in your models. + +To run specific models and the models in the dependency graph, the following `dbt run` commands can be used: + +To select a specific model and the dependencies in the dependency graph: + +```bash +dbt run --select + +``` + +For a specific model and the dependencies in the dependency graph: + +```bash +dbt run --models + +``` + #### Models - **aws_compliance\_\_cis_v1.2.0**: AWS CIS V1.2.0 benchmarks, available for PostgreSQL - **aws_compliance_pci_dss_v3.2.1**: AWS PCI DSS V3.2.1 benchmark. - **aws_compliance\_\_foundational_security**: AWS Foundational Security benchmark, available only for Snowflake -The free version contains 10% of the full pack's queries. \ No newline at end of file +The free version contains 10% of the full pack's queries. diff --git a/transformations/aws/compliance-premium/README.md b/transformations/aws/compliance-premium/README.md index d31ff73b5..463804af8 100644 --- a/transformations/aws/compliance-premium/README.md +++ b/transformations/aws/compliance-premium/README.md @@ -17,6 +17,33 @@ One of the below databases The pack contains the premium version. +#### Running Your dbt Project + +Navigate to your dbt project directory, where your `dbt_project.yml` resides. + +If everything compiles without errors, you can then execute: + +```bash +dbt run +``` + +This command will run all your `dbt` models and create tables/views in your destination database as defined in your models. + +To run specific models and the models in the dependency graph, the following `dbt run` commands can be used: + +To select a specific model and the dependencies in the dependency graph: + +```bash +dbt run --select + +``` + +For a specific model and the dependencies in the dependency graph: + +```bash +dbt run --models + +``` + + #### Models - **aws_compliance\_\_cis_v1.2.0**: AWS CIS V1.2.0 benchmarks, available for PostgreSQL