Skip to content

Error when trying to run v0.4.0; KeyError: 'orgUnit' #599

Closed Answered by adhilto
nuke101 asked this question in Q&A
Discussion options

You must be logged in to vote

@nuke101, there is an environment variable that allows you to save the raw API output. Would you mind setting that variable, then review the output to identify which settings are problematic?

For example:

$env:SCUBAGOGGLES_DUMP_FILE = "debug.json"
scubagoggles gws # add any arguments needed for your specific setup

Then in Python:

import json

with open("debug.json") as f:
    data = json.load(f)

for policy in data['policies']:
    if 'orgUnit' not in policy['policyQuery']:
        print(policy['setting']['type'])

That should print the names of the settings that don't have an associated OU. Assuming the output doesn't contain any sensitive data (it shouldn't but double check), would you…

Replies: 5 comments 3 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
2 replies
@nuke101
Comment options

@nuke101
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@nuke101
Comment options

Answer selected by nuke101
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
4 participants