Skip to content

Commit

Permalink
Fixing an incorrect assignment bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tombuildsstuff committed Sep 28, 2018
1 parent eed4ad6 commit 249404a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azurerm/resource_arm_api_management.go
Original file line number Diff line number Diff line change
Expand Up @@ -576,8 +576,8 @@ func flattenApiManagementHostnameConfigurations(input *[]apimanagement.HostnameC
return []interface{}{
map[string]interface{}{
"management": managementResults,
"portal": proxyResults,
"proxy": portalResults,
"portal": portalResults,
"proxy": proxyResults,
"scm": scmResults,
},
}
Expand Down

0 comments on commit 249404a

Please sign in to comment.