Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
ccogan-lh committed Feb 22, 2022
1 parent af480ea commit cf7b108
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions auth0/resource_auth0_client.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package auth0

import (
"fmt"
"net/http"
"strconv"

Expand Down Expand Up @@ -850,20 +849,6 @@ func expandClient(d *schema.ResourceData) *management.Client {
})
})

if l := List(d, "signing_keys", IsNewResource(), HasChange()); l != nil {
c.SigningKeys = []map[string]string{}
for _, v := range l.List() {
mapString := make(map[string]string)

for key, value := range v.(map[string]interface{}) {
strKey := fmt.Sprintf("%v", key)
strValue := fmt.Sprintf("%v", value)
mapString[strKey] = strValue
}
c.SigningKeys = append(c.SigningKeys, mapString)
}
}

return c
}

Expand Down

0 comments on commit cf7b108

Please sign in to comment.