
dydrc (dydrc) asked a question.
When using the powershell module I receive this message:
Cannot validate argument on parameter 'oOrg'. The Org:prod is not defined in the Okta_org.ps1 file
However my Okta_org.ps1 file looks like this:<# Okta_org.ps1 #># Verbose will print various informative messages[Boolean]$oktaVerbose = $true# define the default Okta Org you want to use, useful if you have more than one.[String]$oktaDefOrg = "prod" [Hashtable]$oktaOrgs = @{ prod = [Hashtable]@{ baseUrl = [String]"https://blanked.okta.com" secToken = [String]"hex blanked" enablePagination = [boolean]$true pageSize = [int]500 } } Did I miss something? (Probably did, I always do)