You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* onboard security group rule commands
* fix NPE
* Update internal/cmd/beta/security-group-rule/create/create.go
Co-authored-by: Alexander Dahmen <alexander.dahmen@inovex.de>
* Update internal/cmd/beta/security-group-rule/create/create.go
Co-authored-by: Alexander Dahmen <alexander.dahmen@inovex.de>
* Update internal/cmd/beta/security-group-rule/list/list.go
Co-authored-by: Alexander Dahmen <alexander.dahmen@inovex.de>
* Update internal/cmd/beta/security-group-rule/create/create_test.go
Co-authored-by: Alexander Dahmen <alexander.dahmen@inovex.de>
* fix unit tests
* Update internal/cmd/beta/security-group-rule/delete/delete_test.go
Co-authored-by: Alexander Dahmen <alexander.dahmen@inovex.de>
* Update internal/cmd/beta/security-group-rule/delete/delete_test.go
Co-authored-by: Alexander Dahmen <alexander.dahmen@inovex.de>
* Update internal/cmd/beta/security-group-rule/delete/delete_test.go
Co-authored-by: Alexander Dahmen <alexander.dahmen@inovex.de>
* fix unit tests
* update docs
* fix linter issues
* fix unit tests
* apply acceptance feedbacks
* add check for protocol if port range info is provided
* changed the flag description
* remove the flag control (api errors are sufficient)
* edit flag descriptions
---------
Co-authored-by: Alexander Dahmen <alexander.dahmen@inovex.de>
Copy file name to clipboardExpand all lines: README.md
+22-22Lines changed: 22 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,28 +65,28 @@ Help is available for any command by specifying the special flag `--help` (or si
65
65
66
66
Below you can find a list of the STACKIT services already available in the CLI (along with their respective command names) and the ones that are currently planned to be integrated.
--direction string The direction of the traffic which the rule should match. The possible values are: "ingress", "egress"
34
+
--ether-type string The ethertype which the rule should match
35
+
-h, --help Help for "stackit beta security-group rule create"
36
+
--icmp-parameter-code int ICMP code. Can be set if the protocol is ICMP
37
+
--icmp-parameter-type int ICMP type. Can be set if the protocol is ICMP
38
+
--ip-range string The remote IP range which the rule should match
39
+
--port-range-max int The maximum port number. Should be greater or equal to the minimum. This should only be provided if the protocol is not ICMP
40
+
--port-range-min int The minimum port number. Should be less or equal to the maximum. This should only be provided if the protocol is not ICMP
41
+
--protocol-name string The protocol name which the rule should match. If a protocol is to be defined, either "protocol-name" or "protocol-number" must be provided
42
+
--protocol-number int The protocol number which the rule should match. If a protocol is to be defined, either "protocol-name" or "protocol-number" must be provided
43
+
--remote-security-group-id string The remote security group which the rule should match
44
+
--security-group-id string The security group ID
45
+
```
46
+
47
+
### Options inherited from parent commands
48
+
49
+
```
50
+
-y, --assume-yes If set, skips all confirmation prompts
51
+
--async If set, runs the command asynchronously
52
+
-o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"]
53
+
-p, --project-id string Project ID
54
+
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
55
+
```
56
+
57
+
### SEE ALSO
58
+
59
+
*[stackit beta security-group rule](./stackit_beta_security-group_rule.md) - Provides functionality for security group rules
0 commit comments