Robert Mcgregor
Robert Mcgregor
The `system` attribute a "computed" attribute that is computed when the resource is read by terraform It looks like this will be the design pattern / convention used moving forward...
Perhaps `_retry()` can use the Okta python SDK's built-in [429 retry](https://github.com/okta/okta-sdk-python/tree/master#built-in-retry)
The datasource `okta_users` should return a list of Okta User IDs Is this not the behavior you are seeing?
I think your config might be incorrect ```hcl locals { user_ids = [for user in data.okta_users.default : user.id] } ``` should instead be ```hcl locals { user_ids = [for user...
that error message suggests that you need to do something like the following to access a specific instance of this multi-instance resource definition, due to the use of the `count`...
( I'm not from Okta ) While this config is quite hard to read without any formatting Is this newly created configuration, or a modification of existing configuration? when you...
Should this PR be rebased now that `V5` has been released? We could merge this into a long running branch for `V6` if we want?
Hi @brianduffield-okta, I think I ended up just scraping this page manually to get the information I needed Perhaps the script that generates this page at build time could be...
Hey @brianduffield-okta, Thanks for the info, I'll keep an eye out for future updates!
Hey @tim-koehler, It looks like this PR has some merge conflicts now that `V5` has been released, did you want to rebase this one?