Skip to content

Commit bfbdbd2

Browse files
committed
Fix
1 parent 299f0de commit bfbdbd2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

cmd/scw/testdata/test-all-usage-instance-security-group-create-usage.golden

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ARGS:
3030
[stateful=true] Whether the security group is stateful or not
3131
[inbound-default-policy=accept] Default policy for inbound rules (accept | drop)
3232
[outbound-default-policy=accept] Default policy for outbound rules (accept | drop)
33-
[enable-default-security] True to block SMTP on IPv4 and IPv6
33+
[enable-default-security] True to block SMTP on IPv4 and IPv6. This feature is read only, please open a support ticket if you need to make it configurable
3434
[organization-id] Organization ID to use. If none is passed the default organization ID will be used
3535
[zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2)
3636

cmd/scw/testdata/test-all-usage-instance-volume-type-usage.golden

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ USAGE:
77
scw instance volume-type <command>
88

99
AVAILABLE COMMANDS:
10-
list List volumes types
10+
list List volume types
1111

1212
FLAGS:
1313
-h, --help help for volume-type

docs/commands/instance.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Instance API.
8989
- [List volumes](#list-volumes)
9090
- [Update a volume](#update-a-volume)
9191
- [Volume type management commands](#volume-type-management-commands)
92-
- [List volumes types](#list-volumes-types)
92+
- [List volume types](#list-volume-types)
9393

9494

9595
## Image management commands
@@ -1137,7 +1137,7 @@ scw instance security-group create [arg=value ...]
11371137
| stateful | Default: `true` | Whether the security group is stateful or not |
11381138
| inbound-default-policy | Default: `accept`<br />One of: `accept`, `drop` | Default policy for inbound rules |
11391139
| outbound-default-policy | Default: `accept`<br />One of: `accept`, `drop` | Default policy for outbound rules |
1140-
| enable-default-security | | True to block SMTP on IPv4 and IPv6 |
1140+
| enable-default-security | | True to block SMTP on IPv4 and IPv6. This feature is read only, please open a support ticket if you need to make it configurable |
11411141
| organization-id | | Organization ID to use. If none is passed the default organization ID will be used |
11421142
| zone | Default: `fr-par-1`<br />One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `pl-waw-1`, `pl-waw-2` | Zone to target. If none is passed will use default zone from the config |
11431143

@@ -2905,7 +2905,7 @@ Each of these types will contains all the capabilities and constraints of the vo
29052905

29062906

29072907

2908-
### List volumes types
2908+
### List volume types
29092909

29102910
List all volume types and their technical details.
29112911

internal/namespaces/instance/v1/instance_cli.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ func instanceServerTypeList() *core.Command {
350350

351351
func instanceVolumeTypeList() *core.Command {
352352
return &core.Command{
353-
Short: `List volumes types`,
353+
Short: `List volume types`,
354354
Long: `List all volume types and their technical details.`,
355355
Namespace: "instance",
356356
Resource: "volume-type",
@@ -2044,7 +2044,7 @@ func instanceSecurityGroupCreate() *core.Command {
20442044
},
20452045
{
20462046
Name: "enable-default-security",
2047-
Short: `True to block SMTP on IPv4 and IPv6`,
2047+
Short: `True to block SMTP on IPv4 and IPv6. This feature is read only, please open a support ticket if you need to make it configurable`,
20482048
Required: false,
20492049
Deprecated: false,
20502050
Positional: false,

0 commit comments

Comments
 (0)