-
Notifications
You must be signed in to change notification settings - Fork 208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Identity Provider sso_url #1558
Comments
Thanks @venkatakanupuru . I can see how the definition/behavior of the idp saml resource needs to be tightened up to matched what is documented in the public API. I'm not sure if the API drifted since this resource was created or if the resource has always been imprecise. Okta internal reference: https://oktainc.atlassian.net/browse/OKTA-612970 |
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 5 days |
Not stale |
@monde any chance to get this issue fixed in the near future? |
getting set in `okta_idp_saml`'s read context which would cause a incomplete import and might have missing change detection. Closes #1558
I have a PR to address this issue: #1796 Given an existing SAML IdP and the following config: terraform {
required_providers {
okta = {
source = "okta/okta"
}
}
}
resource "okta_idp_saml" "test" {
name = "Test 1558"
} Terraform import will look like this for me:
|
@venkatakanupuru this will go out on the next release. |
getting set in `okta_idp_saml`'s read context which would cause a incomplete import and might have missing change detection. Closes okta#1558
getting set in `okta_idp_saml`'s read context which would cause a incomplete import and might have missing change detection. Closes okta#1558
Community Note
Terraform Version
Affected Resource(s)
Terraform Configuration Files
Debug Output
Panic Output
Expected Behavior
Can this be done in the Admin UI?
Can this be done in the actual API call?
Actual Behavior
Steps to Reproduce
terraform apply
Important Factoids
References
Hi Team,
For a SAML IDP, resource "okta_idp_saml" I am able to configure the IDP with no issues. And I am able to import the IDP configurations which are manually configured from Okta UI
However the sso_url which is a required attribute is not being imported or it wont show up and needs to be manually added in the script.
sso_url - (Required) URL of binding-specific endpoint to send an AuthnRequest message to IdP.
and also issuer_mode, name_format and sso_binding which is not required but without these it is throwing an error.
Steps for configuring manually IDP attributes :
OKTA Admin UI >> Security >> Identity Providers >> your IDP >> configure
For importing :
terraform import okta_idp_saml.example
Can you please help in including the sso_url when importing.
Thank you
Venkata
The text was updated successfully, but these errors were encountered: