Skip to content

Commit

Permalink
fix: firewall destination IPs are omitted in schema
Browse files Browse the repository at this point in the history
  • Loading branch information
phm07 committed Mar 5, 2024
1 parent 7511685 commit 56988bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hcloud/schema/firewall.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type Firewall struct {
type FirewallRule struct {
Direction string `json:"direction"`
SourceIPs []string `json:"source_ips,omitempty"`
DestinationIPs []string `json:"destination_ips,omitempty"`
DestinationIPs []string `json:"destination_ips"`
Protocol string `json:"protocol"`
Port *string `json:"port,omitempty"`
Description *string `json:"description,omitempty"`
Expand Down

0 comments on commit 56988bc

Please sign in to comment.