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
If you set the require_client_authentication property to false, a warning is generated by terraform:
│ Warning: Argument is deprecated
│
│ with fusionauth_application.website,
│ on main.tf line 547, in resource "fusionauth_application" "website":
│ 547: require_client_authentication = false
│
│ In version 1.28.0 and beyond, client authentication can be managed via oauth_configuration.client_authentication_policy.
If you set the require_client_authentication property to false, a warning is generated by terraform:
│ Warning: Argument is deprecated
│
│ with fusionauth_application.website,
│ on main.tf line 547, in resource "fusionauth_application" "website":
│ 547: require_client_authentication = false
│
│ In version 1.28.0 and beyond, client authentication can be managed via oauth_configuration.client_authentication_policy.
Yet if you use the new property like this:
...then
terraform apply
will attempt to set the default value of the deprecated property each time:The expected behaviour is that terraform will not attempt to set the default value of the deprecated property.
The text was updated successfully, but these errors were encountered: