Open exitcode0 opened 2 months ago
fixes: #1571
I'm still learning GoLang and thus this PR was heavily aided by Generative AI
I've not written any tests as yet I would like to get some feedback on what i've done thus far before I write tests for behavior that is incorrect
resource "okta_admin_role_custom" "limited_readonly" { label = "limited readOnly" description = "readOnly access to apps, groups, and a subset of user profile attributes" permissions = [ "okta.users.read", "okta.groups.read", "okta.apps.read", ] permission_conditions { permission = "okta:ResourceAttribute/User/Profile" include = ["city", "state", "zipCode"] exclude = ["secondEmail", "mobilePhone", "primaryPhone", "postalAddress"] } }
@duytiennguyen-okta any chance I could trouble you for a code review on this one?
fixes: #1571
I'm still learning GoLang and thus this PR was heavily aided by Generative AI
I've not written any tests as yet I would like to get some feedback on what i've done thus far before I write tests for behavior that is incorrect