Skip to content

Commit

Permalink
Merge pull request #108 from silinternational/feature/fix-example-config
Browse files Browse the repository at this point in the history
Fix Source and Destination AttributeMap field names in example config
  • Loading branch information
forevermatt authored Sep 3, 2024
2 parents 55e2af4 + ca0bf02 commit 9aa625f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lambda-example/config.example.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,18 @@
},
"AttributeMap": [
{
"SourceName": "First_Name",
"DestinationName": "givenName",
"Source": "First_Name",
"Destination": "givenName",
"required": true
},
{
"SourceName": "Last_Name",
"DestinationName": "sn",
"Source": "Last_Name",
"Destination": "sn",
"required": true
},
{
"SourceName": "Email",
"DestinationName": "mail",
"Source": "Email",
"Destination": "mail",
"required": true
}
],
Expand Down

0 comments on commit 9aa625f

Please sign in to comment.