Feat: data_okta_app_group_assignments
add priority
and profile
to schema
#2047
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The DataSource
okta_app_group_assignments
currently returns a list of Okta group IDsThe DataSource does not expose additional information that is returned in the API response
This PR adds the group's
priority
andprofile
to the DataSource to make full use of the data returned to us in the API responseThe impetus for this PR is that I need to test configuration changes to a large, heavily used application where it's group assignments are managed via an external system
I have cloned the original Okta application and made the configuration changes to the new app in order to test there effects.
Due to the original applications okta_app_group assignments being managed via an external system, I was unable to determine how I could easily clone/replicate the group assignment configuration from one application to the other
While I was ultimately able to find a workaround, The updates this PR introduce to this datasource would be ideal for this usecase