A Terraform provider to manage Okta resources, enabling infrastructure-as-code provisioning and management of users, groups, applications, and other Okta objects.
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
Description
According to Okta docs, the identity provider API provides an option to set the honorPersistentNameId field, which is not present in the okta_idp_saml docs. Could you support that functionality?
New or Affected Resource(s)
okta_idp_saml
Potential Terraform Configuration
# Copy-paste your Terraform configurations here - for large Terraform configs,
# please use a service like Dropbox and share a link to the ZIP file. For
# security, you can also encrypt the files using our GPG public key.
resource "okta_idp_saml" "some_idp" {
name = "name"
sso_url = "https://thisisaurl/sso"
sso_destination = "https://thisisadestination/sso"
username_template = "idpuser.subjectNameId"
kid = "kid"
issuer = "https://sso-issuer/metadata"
honorPersistentNameId = true
request_signature_scope = "REQUEST"
response_signature_scope = "ANY"
max_clock_skew = 120000
profile_master = false
provisioning_action = "DISABLED"
subject_match_attribute = "email"
subject_match_type = "CUSTOM_ATTRIBUTE"
}
Community Note
Description
According to Okta docs, the identity provider API provides an option to set the honorPersistentNameId field, which is not present in the okta_idp_saml docs. Could you support that functionality?
New or Affected Resource(s)
Potential Terraform Configuration
References
0000