generated from brabster/dbt_bigquery_template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wrap up first pass, add ACLs to prod env
- Loading branch information
Showing
8 changed files
with
50 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export DBT_DATASET=pypi_vulnerabilities | ||
export DBT_DATASET=pypi_vulnerabilities_us | ||
export DBT_LOCATION=US | ||
export DBT_PROJECT=pypi-vulnerabilities |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"access": [ | ||
{ | ||
"role": "READER", | ||
"specialGroup": "projectReaders" | ||
}, | ||
{ | ||
"role": "WRITER", | ||
"specialGroup": "projectWriters" | ||
}, | ||
{ | ||
"role": "OWNER", | ||
"specialGroup": "projectOwners" | ||
}, | ||
{ | ||
"role": "roles/bigquery.dataViewer", | ||
"specialGroup": "allAuthenticatedUsers" | ||
} | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
# Python virtualenv files | ||
.venv/ | ||
/.venv/ | ||
|
||
# User's environment settings | ||
.env | ||
/.env | ||
|
||
# DBT logs | ||
logs/ | ||
/logs/ | ||
|
||
# DBT target dir | ||
target/ | ||
/target/ | ||
|
||
# DBT packages | ||
dbt_packages/ | ||
package-lock.yml | ||
/dbt_packages/ | ||
/package-lock.yml | ||
|
||
# files that we don't want committed | ||
uncommitted/* | ||
!uncommitted/README.md | ||
/uncommitted/* | ||
!/uncommitted/README.md |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
{% docs __overview__ %} | ||
BigQuery-based investigation into PyPI package downloads and vulnerabilities. | ||
{% enddocs %} | ||
|
||
- Derived from public domain information | ||
- Operating in BigQuery sandbox - 60 day expiry on tables | ||
- More info in [README.md on GitHub](https://github.com/brabster/pypi_vulnerabilities) | ||
- Star project {{ env_var('DBT_PROJECT') }} in BigQuery console | ||
|
||
{% enddocs %} | ||
|