Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The okta_groups data source has a hard cap of 200 groups returned #932

Closed
jyoder-deloitte opened this issue Jan 29, 2022 · 0 comments · Fixed by #938
Closed

The okta_groups data source has a hard cap of 200 groups returned #932

jyoder-deloitte opened this issue Jan 29, 2022 · 0 comments · Fixed by #938

Comments

@jyoder-deloitte
Copy link

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Terraform Version

Terraform v1.0.8
on darwin_amd64

  • provider registry.terraform.io/hashicorp/aws v3.74.0
  • provider registry.terraform.io/okta/okta v3.20.3

Affected Resource(s)

  • data.okta_group

Terraform Configuration Files

data "okta_groups" "apps" {
  q    = "app-"
  type = "OKTA_GROUP"
}

output "app_group_count" {
  description = "Okta App Group Count"
  value = length(data.okta_groups.apps.groups)
}

Debug Output

NA

Expected Behavior

A full list of all matching groups should be returned in the data.okta_group.apps.groups list

Actual Behavior

Only the first 200 matching groups are returned in the data.okta_group.apps.groups list

Steps to Reproduce

  1. terraform plan
  2. Examine the app_group_count output value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant