Skip to content

Commit

Permalink
Revert baseline md filename change
Browse files Browse the repository at this point in the history
  • Loading branch information
adhilto committed Jun 20, 2024
1 parent 4956068 commit b2ccadd
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
18 changes: 9 additions & 9 deletions baselines/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Individual baselines can be visited directly at the links below:

- [Common Controls](/baselines/commoncontrols.md)
- [Gmail](/baselines/gmail.md)
- [Google Calendar](/baselines/calendar.md)
- [Google Chat](/baselines/chat.md)
- [Google Classroom](/baselines/classroom.md)
- [Google Drive and Docs](/baselines/drive.md)
- [Google Meet](/baselines/meet.md)
- [Google Sites](/baselines/sites.md)
- [Groups for Business](/baselines/groups.md)
- [Common Controls](/baselines/Common%20Controls%20Minimum%20Viable%20Secure%20Configuration%20Baseline%20v0.2.md)
- [Gmail](/baselines/Gmail%20Minimum%20Viable%20Secure%20Configuration%20Baseline%20v0.2.md)
- [Google Calendar](/baselines/Google%20Calendar%20Minimum%20Viable%20Secure%20Configuration%20Baseline%20v0.2.md)
- [Google Chat](/baselines/Google%20Chat%20Minimum%20Viable%20Secure%20Configuration%20Baseline%20v0.2.md)
- [Google Classroom](/baselines/Google%20Classroom%20Minimum%20Viable%20Secure%20Configuration%20Baseline%20v0.2.md)
- [Google Drive and Docs](/baselines/Google%20Drive%20and%20Docs%20Minimum%20Viable%20Secure%20Configuration%20Baseline%20v0.2.md)
- [Google Meet](/baselines/Google%20Meet%20Minimum%20Viable%20Secure%20Configuration%20Baseline%20v0.2.md)
- [Google Sites](/baselines/Google%20Sites%20Minimum%20Viable%20Secure%20Configuration%20Baseline%20v0.2.md)
- [Groups for Business](/baselines/Groups%20for%20Business%20Minimum%20Viable%20Secure%20Configuration%20Baseline%20v0.2.md)
2 changes: 1 addition & 1 deletion docs/authentication/OAuth.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Only complete this section if not authenticating via [Service Account](/docs/aut
with an account with the necessary privileges and click allow.

## Add the Oauth App to the allowlist
If you've limited application access to Google's APIs in your organization, the [Common Controls: App Access to Google APIs](/baselines/commoncontrols.md#10-app-access-to-google-apis) baseline covers this topic, follow the directions below to allowlist the OAuth app.
If you've limited application access to Google's APIs in your organization, the [Common Controls: App Access to Google APIs](/baselines/Common%20Controls%20Minimum%20Viable%20Secure%20Configuration%20Baseline%20v0.2.md#10-app-access-to-google-apis) baseline covers this topic, follow the directions below to allowlist the OAuth app.

1. Login to https://console.cloud.google.com
2. Navigate to the appropriate project
Expand Down
8 changes: 4 additions & 4 deletions scubagoggles/reporter/md_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ def read_baseline_docs(baseline_path:pathlib.Path, prod_to_fullname:dict):
filename.stem for filename in baseline_path.glob('*.md')
]

# # map baseline short name i.e gmail to markdown file name
# # assumes the product short name is in the markdown file name
# map baseline short name i.e gmail to markdown file name
# assumes the product fullname is in the markdown file name
prod_to_baselinemd = {}
for product in prod_to_fullname:
for product, fullname in prod_to_fullname.items():
for baseline in baseline_md:
if product in baseline:
if fullname in baseline:
prod_to_baselinemd[product] = baseline

# create a dict containing Policy Group and Individual policies
Expand Down

0 comments on commit b2ccadd

Please sign in to comment.