Skip to content

Commit

Permalink
chore: format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartjbrown committed Mar 27, 2024
1 parent febea3a commit a1d2957
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,16 +169,14 @@ func (r FunctionAppHybridConnectionResource) Create() sdk.ResourceFunc {

envelope := webapps.HybridConnection{
Properties: &webapps.HybridConnectionProperties{
RelayArmUri: pointer.To(relayId.ID()),
Hostname: pointer.To(appHybridConn.HostName),
Port: pointer.To(appHybridConn.HostPort),
SendKeyName: pointer.To(appHybridConn.SendKeyName),
RelayArmUri: pointer.To(relayId.ID()),
Hostname: pointer.To(appHybridConn.HostName),
Port: pointer.To(appHybridConn.HostPort),
SendKeyName: pointer.To(appHybridConn.SendKeyName),
SendKeyValue: sendKeyValue,
},
}



_, err = client.CreateOrUpdateHybridConnection(ctx, id, envelope)
if err != nil {
return fmt.Errorf("creating %s: %+v", id, err)
Expand Down

0 comments on commit a1d2957

Please sign in to comment.