A Terraform provider to manage Okta resources, enabling infrastructure-as-code provisioning and management of users, groups, applications, and other Okta objects.
The DataSource okta_app_group_assignments currently returns a list of Okta group IDs
The DataSource does not expose additional information that is returned in the API response
This PR adds the group's priority and profile to the DataSource to make full use of the data returned to us in the API response
The 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
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