Skip to content
This repository has been archived by the owner on Mar 8, 2022. It is now read-only.

Commit

Permalink
Fix name to display_name
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Kalyvitis authored and yvovandoorn committed Apr 6, 2021
1 parent bde4519 commit f768025
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auth0/resource_auth0_connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ func readConnection(d *schema.ResourceData, m interface{}) error {

d.SetId(auth0.StringValue(c.ID))
d.Set("name", c.Name)
d.Set("display_name", c.Name)
d.Set("display_name", c.DisplayName)
d.Set("is_domain_connection", c.IsDomainConnection)
d.Set("strategy", c.Strategy)
d.Set("options", flattenConnectionOptions(d, c.Options))
Expand Down

0 comments on commit f768025

Please sign in to comment.