Skip to content

Commit

Permalink
azurerm_function_app_function - fix bug in file name pointer (#20198)
Browse files Browse the repository at this point in the history
Co-authored-by: probicbutez <[email protected]>
fixes #17266
  • Loading branch information
Khuzd authored Feb 6, 2023
1 parent 506efc5 commit 950195e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,8 @@ func expandFunctionFiles(input []FunctionFiles) map[string]*string {
}
result := make(map[string]*string)
for _, v := range input {
result[v.Name] = &v.Content
content := v.Content
result[v.Name] = &content
}

return result
Expand Down

0 comments on commit 950195e

Please sign in to comment.