Skip to content

Commit

Permalink
Send authorized_url_validation_policy when creating application (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Lengsholz authored Apr 5, 2023
1 parent 283e7ef commit eb113aa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions fusionauth/resource_fusionauth_application_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ func buildApplication(data *schema.ResourceData) fusionauth.Application {
OauthConfiguration: fusionauth.OAuth2Configuration{
AuthorizedOriginURLs: handleStringSlice("oauth_configuration.0.authorized_origin_urls", data),
AuthorizedRedirectURLs: handleStringSlice("oauth_configuration.0.authorized_redirect_urls", data),
AuthorizedURLValidationPolicy: fusionauth.Oauth2AuthorizedURLValidationPolicy(data.Get("oauth_configuration.0.authorized_url_validation_policy").(string)),
ClientAuthenticationPolicy: fusionauth.ClientAuthenticationPolicy(data.Get("oauth_configuration.0.client_authentication_policy").(string)),
ClientSecret: data.Get("oauth_configuration.0.client_secret").(string),
Debug: data.Get("oauth_configuration.0.debug").(bool),
Expand Down

0 comments on commit eb113aa

Please sign in to comment.