Skip to content

Commit

Permalink
fix lb ssl issue to use proper json (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddymko committed Nov 26, 2021
1 parent 95d801c commit bb41ded
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions load_balancer.go
Expand Up @@ -118,8 +118,8 @@ type LBFirewallRule struct {

// SSL represents valid SSL config
type SSL struct {
PrivateKey string `json:"ssl_private_key,omitempty"`
Certificate string `json:"ssl_certificate,omitempty"`
PrivateKey string `json:"private_key,omitempty"`
Certificate string `json:"certificate,omitempty"`
Chain string `json:"chain,omitempty"`
}

Expand Down

0 comments on commit bb41ded

Please sign in to comment.