Skip to content

Commit

Permalink
fix(firewall): unclear wording for apply to/remove from resource
Browse files Browse the repository at this point in the history
  • Loading branch information
phm07 committed Jul 10, 2024
1 parent 320300c commit 3580576
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/cmd/firewall/apply_to_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ var ApplyToResourceCmd = base.Cmd{
if err := s.WaitForActions(cmd, s, actions...); err != nil {
return err
}
cmd.Printf("Firewall %d applied\n", firewall.ID)
cmd.Printf("Firewall %d applied to resource\n", firewall.ID)

return nil
},
Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/firewall/remove_from_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ var RemoveFromResourceCmd = base.Cmd{
if err := s.WaitForActions(cmd, s, actions...); err != nil {
return err
}
cmd.Printf("Firewall %d applied\n", firewall.ID)
cmd.Printf("Firewall %d removed from resource\n", firewall.ID)

return nil
},
Expand Down

0 comments on commit 3580576

Please sign in to comment.