Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/stackit_beta_sqlserverflex_instance_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ stackit beta sqlserverflex instance create [flags]
Create a SQLServer Flex instance with name "my-instance" and specify flavor by CPU and RAM. Other parameters are set to default values
$ stackit beta sqlserverflex instance create --name my-instance --cpu 1 --ram 4

Create a SQLServer Flex instance with name "my-instance" and specify flavor by ID. Other parameters are set to default values
Create a SQLServer Flex instance with name "my-instance" and specify flavor by ID. Other parameters are set to default values.
The flavor ID can be retrieved by running "$ stackit beta sqlserverflex options --flavors"
$ stackit beta sqlserverflex instance create --name my-instance --flavor-id xxx

Create a SQLServer Flex instance with name "my-instance", specify flavor by CPU and RAM, set storage size to 20 GB, and restrict access to a specific range of IP addresses. Other parameters are set to default values
Expand Down
3 changes: 2 additions & 1 deletion internal/cmd/beta/sqlserverflex/instance/create/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ func NewCmd(p *print.Printer) *cobra.Command {
`Create a SQLServer Flex instance with name "my-instance" and specify flavor by CPU and RAM. Other parameters are set to default values`,
`$ stackit beta sqlserverflex instance create --name my-instance --cpu 1 --ram 4`),
examples.NewExample(
`Create a SQLServer Flex instance with name "my-instance" and specify flavor by ID. Other parameters are set to default values`,
`Create a SQLServer Flex instance with name "my-instance" and specify flavor by ID. Other parameters are set to default values.
The flavor ID can be retrieved by running "$ stackit beta sqlserverflex options --flavors"`,
`$ stackit beta sqlserverflex instance create --name my-instance --flavor-id xxx`),
examples.NewExample(
`Create a SQLServer Flex instance with name "my-instance", specify flavor by CPU and RAM, set storage size to 20 GB, and restrict access to a specific range of IP addresses. Other parameters are set to default values`,
Expand Down