Skip to content

Commit 2352383

Browse files
authored
chore: remove typo in server create example (#1090)
1 parent 122503b commit 2352383

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/stackit_server_create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ stackit server create [flags]
3838
$ stackit server create --machine-type t1.1 --name server1 --boot-volume-source-id xxx --boot-volume-source-type image --boot-volume-size 64 --volumes yyy
3939
4040
Create a server with user data (cloud-init)
41-
$ stackit server create --machine-type t1.1 --name server1 --boot-volume-source-id xxx --boot-volume-source-type image --boot-volume-size 64 --user-data @path/to/file.yaml")
41+
$ stackit server create --machine-type t1.1 --name server1 --boot-volume-source-id xxx --boot-volume-source-type image --boot-volume-size 64 --user-data @path/to/file.yaml
4242
```
4343

4444
### Options

internal/cmd/server/create/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ func NewCmd(params *params.CmdParams) *cobra.Command {
105105
),
106106
examples.NewExample(
107107
`Create a server with user data (cloud-init)`,
108-
`$ stackit server create --machine-type t1.1 --name server1 --boot-volume-source-id xxx --boot-volume-source-type image --boot-volume-size 64 --user-data @path/to/file.yaml")`,
108+
`$ stackit server create --machine-type t1.1 --name server1 --boot-volume-source-id xxx --boot-volume-source-type image --boot-volume-size 64 --user-data @path/to/file.yaml`,
109109
),
110110
),
111111
RunE: func(cmd *cobra.Command, args []string) error {

0 commit comments

Comments
 (0)