Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kosinsky committed Mar 17, 2020
1 parent 5525a83 commit 0c84ab5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions azurerm/helpers/azure/hdinsight.go
Expand Up @@ -150,14 +150,13 @@ func ExpandHDInsightsConfigurations(input []interface{}) map[string]interface{}
username := vs["username"].(string)
password := vs["password"].(string)

config := map[string]interface{}{
return map[string]interface{}{
"gateway": map[string]interface{}{
"restAuthCredential.isEnabled": enabled,
"restAuthCredential.username": username,
"restAuthCredential.password": password,
},
}
return config
}

func ExpandHDInsightsMetastore(input []interface{}) map[string]interface{} {
Expand Down Expand Up @@ -238,7 +237,6 @@ func FlattenHDInsightsHiveMetastore(env map[string]*string, site map[string]*str
}

if server != "" && database != "" {

return []interface{}{
map[string]interface{}{
"server": server,
Expand Down

0 comments on commit 0c84ab5

Please sign in to comment.