You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This creates the connection just fine. But if I make an unrelated change and run terraform plan, I see this:
Terraform will perform the following actions:
# auth0_connection.ad_gallery_test_connection will be updated in-place
~ resource "auth0_connection" "example_connection" {
id = "con_xxxxxxxxxxxxxxxxxxx"
name = "Example"
# (6 unchanged attributes hidden)
~ options {
- sign_in_endpoint = "https://[...]" -> null
- sign_out_endpoint = "https://[...]" -> null
- signing_cert = "[...]" -> null
# (28 unchanged attributes hidden)
}
}
[...]
It looks like the Auth0 provider doesn't realize that the sign_in_endpoint, sign_out_endpoint, and signing_cert arguments are computed from the metadata_xml argument. I think this issue is essentially the same as #387.
Expectation
I would expect the provider to realize that these properties are computed from the metadata_xml file, and not try to change them to null when nothing in that file has changed.
Reproduction
A TF block like the one above should be sufficient provided that the metadata_xml argument contains a valid SAML metadata XML document.
First run apply to create the object, then run plan to see the diff.
Auth0 Terraform Provider version
0.45.0
Terraform version
1.3.3
The text was updated successfully, but these errors were encountered:
Checklist
Description
I have an Auth0 SAML connection resource that looks like this:
This creates the connection just fine. But if I make an unrelated change and run
terraform plan
, I see this:It looks like the Auth0 provider doesn't realize that the
sign_in_endpoint
,sign_out_endpoint
, andsigning_cert
arguments are computed from themetadata_xml
argument. I think this issue is essentially the same as #387.Expectation
I would expect the provider to realize that these properties are computed from the
metadata_xml
file, and not try to change them tonull
when nothing in that file has changed.Reproduction
A TF block like the one above should be sufficient provided that the
metadata_xml
argument contains a valid SAML metadata XML document.First run
apply
to create the object, then runplan
to see the diff.Auth0 Terraform Provider version
0.45.0
Terraform version
1.3.3
The text was updated successfully, but these errors were encountered: