Robert Mcgregor

Results 89 comments of Robert Mcgregor

#1025 exists for updating the app signon policies to support assiciation with apps [policy_profile_enrollment](https://registry.terraform.io/providers/okta/okta/latest/docs/resources/policy_profile_enrollment) and [policy_profile_enrollment_apps](https://registry.terraform.io/providers/okta/okta/latest/docs/resources/policy_profile_enrollment_apps) might be what you're after for your related links

it seems that `data_source_okta_users` calls [/api/v1/users](https://github.com/okta/terraform-provider-okta/blob/master/okta/data_source_okta_users.go#L61) which does not return admin roles for the users the documentation for the datasource [Here](https://registry.terraform.io/providers/okta/okta/latest/docs/data-sources/users#admin_roles) would suggest that this is possible So I guess...

My workaround for this for now in case someone else comes across this issue ```hcl resource "okta_resource_set" "okta_admins" { label = "okta_admins" description = "okta_admins" resources = [ "https://${local.org_name}.${local.base_url}/api/v1/groups/${okta_group.okta_admins.id}/users", ]...

Not sure if this is related to this issue, but attempting to update the `required` attribute to false on our `"okta_user_base_schema_property" "firstName"` we received an API layer error of `Error:...

I must've been not been sufficiently caffeinated when I opened this issue, revisted this today and the below works The data is there, its just in a more complex objects...

@monde Just wanting to clarify if this was closed by stale-bot or if this is considered a won't fix?

@monde Just wanting to clarify if this was closed by stale-bot or if this is considered a won't fix?

I Don't think there is a "supported" API endpoint for getting groups claim information, When using a `SWSS API Token` the Terraform provider calls a undocumented / unsupported API Endpoint...

Hey @jefftaylor-okta It's great to hear that this is something that's already being worked on! Is this something that's rolling out to each application as and when the required changes...

I renamed the resource itself and didn't use the `moved` block in Terraform, I did this mainly out of laziness because the resource is not in production use yet The...