Skip to content

Commit

Permalink
fix: 環境変数のtypoを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
GoRuGoo committed Dec 18, 2023
1 parent c225dfd commit 803298f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lambda/room/{room_id}/POST/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func insertUserDataToCandleBackendUserTable(cfg aws.Config, ctx context.Context,
svc := dynamodb.NewFromConfig(cfg)

tableName := "CandleBackendUserTable"
if t, exists := os.LookupEnv("USER_ABLE_NAME"); exists {
if t, exists := os.LookupEnv("USER_TABLE_NAME"); exists {
tableName = t
}

Expand Down

0 comments on commit 803298f

Please sign in to comment.