generated from databricks-industry-solutions/industry-solutions-blueprints
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Feature/sfe 3067 proxy (#140) * Fixed data type (#132) Co-authored-by: arunpamulapati <arunpamulapati> * Updated the SBP content to make sure the checks are clearly noted with mutual exclusive nature (#133) Co-authored-by: arunpamulapati <arunpamulapati> --------- Co-authored-by: Arun Pamulapati <[email protected]> * Sfe 3029 remove dependency on pat dashboards (#141) * Fixed data type (#132) Co-authored-by: arunpamulapati <arunpamulapati> * Updated the SBP content to make sure the checks are clearly noted with mutual exclusive nature (#133) Co-authored-by: arunpamulapati <arunpamulapati> * Removed dependency on PAT token * Added proxies to config --------- Co-authored-by: Arun Pamulapati <[email protected]> Co-authored-by: arunpamulapati <arunpamulapati> * Feature/sfe 3028 configure schema through setup (#142) * Made schema configurable * fixed catalog name doc --------- Co-authored-by: arunpamulapati <arunpamulapati> * Update SAT configuration to include proxy support DABs, WIP TF * Update TF code * Add proxy support to SAT configuration * delete previous initialize.py * added condition to check if database already has security_best_practices * update SAT configuration to include catalog and security analysis schema * Change proxy type for TF * removed comments cell. * Updated to not use PAT for testing * removed PAT in the print * Updated TF to make sure we have analysis_schema_name working * updated to not use PAT for testing * Update README.md to fix borken terrform links * Add analysis_schema_name variable to GCP provider configuration * moved away from PATs for GCP to use temp tokens * Made GCP TF to go with the current code * Update setup documentation and remove PAT references * Update setup.md added note about SAT install rule for a given account and subscription. * Updated best practices file * Update setup.md Added dashboard new location for the legacy dashboards. * Update setup documentation to include support for Unity Catalog and proxies * Update security_best_practices.csv merged from main --------- Co-authored-by: David Leiva <[email protected]> Co-authored-by: arunpamulapati <arunpamulapati>
- Loading branch information
1 parent
1e294f7
commit c9da49f
Showing
42 changed files
with
520 additions
and
489 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# Setup Guide | ||
|
||
> **SAT v0.2.0 or higher** brings full support for Unity Catalog. Now you can pick your catalog instead of hive_metastore. Plus, you get to choose your own schema name. | ||
Follow this guide to setup the Security Analysis Tool (SAT) on your Databricks workspace. | ||
|
||
## Prerequisites | ||
|
@@ -27,12 +29,13 @@ SAT creates a new security_analysis database and Delta tables. If you are an exi | |
### Unity Catalog based schema | ||
|
||
```sql | ||
drop database <uc_catalog_name>.security_analysis cascade; | ||
drop database <uc_catalog_name>.<schema_name> cascade; | ||
``` | ||
|
||
## Setup | ||
|
||
> SAT is a productivity tool to help verify security configurations of Databricks deployments, it's not meant to be used as certification or attestation of your deployments. SAT project is regularly updated to improve the correctness of checks, add new checks, and fix bugs. Please send your feedback and comments to [email protected]. | ||
> SAT is a productivity tool to help verify security configurations of Databricks deployments, it's not meant to be used as certification or attestation of your deployments. SAT project is regularly updated to improve the correctness of checks, add new checks, and fix bugs. You will need a single SAT install per Databricks account in AWS and GCP and a single install per azure subscription in Azure. Add the Service principle as mentioned in the detailed steps to analyze the rest of the workspaces from the workspace where SAT is installed. You can choose not to add SP to a given workspace if you wish to ignore a given workspace. | ||
> Please send your feedback and comments to [email protected]. | ||
SAT can be setup on any of the cloud providers where Databricks is hosted. Follow the setup guide for the cloud provider you are using: | ||
|
||
|
@@ -70,10 +73,10 @@ You now have two jobs (SAT Initializer Notebook & SAT Driver Notebook). Run SAT | |
|
||
### 2. Access Databricks SQL Dashboards | ||
|
||
> **Note:** You can also use Lakeview Dashboards to view the results, instead of classic Dashboards. | ||
> **Note:** You can also use Lakeview Dashboards to view the results. | ||
|
||
In DBSQL find "SAT - Security Analysis Tool" dashboard to see the report. You can filter the dashboard by **SAT** tag. | ||
In DBSQL find "SAT - Security Analysis Tool" dashboard to see the report. You can filter the dashboard by **SAT** tag. (The old classic legacy dashboard can be found in Workspace -> Home -> SAT_dashboard) | ||
|
||
<img src="./images/sat_dashboard_loc.png" width="70%" height="70%"> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.