Skip to content

Commit ae61475

Browse files
authored
fix: use correct case for l in UpCloud (#275)
1 parent 7f8f3e1 commit ae61475

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ UpCloud command-line interface
1111
`upctl` provides a command-line interface to UpCloud services. It allows you to
1212
control your resources from the command line or any compatible interface.
1313
14-
To be able to manage your UpCLoud resources, you need to configure credentials
14+
To be able to manage your UpCloud resources, you need to configure credentials
1515
for `upctl` and enable API access for these credentials. Define the credentials
1616
by setting `UPCLOUD_USERNAME` and `UPCLOUD_PASSWORD` environment variables. API
1717
access can be configured on the Account page of the UpCloud Hub. We recommend

internal/core/core.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const rootCmdLongDescription = `UpCloud command-line interface
2222
2323
` + "`" + `upctl` + "`" + ` provides a command-line interface to UpCloud services. It allows you to control your resources from the command line or any compatible interface.
2424
25-
To be able to manage your UpCLoud resources, you need to configure credentials for ` + "`" + `upctl` + "`" + ` and enable API access for these credentials. Define the credentials by setting ` + "`" + `UPCLOUD_USERNAME` + "`" + ` and ` + "`" + `UPCLOUD_PASSWORD` + "`" + ` environment variables. API access can be configured on the Account page of the UpCloud Hub. We recommend you to set up a sub-account specifically for the API usage with its own username and password, as it allows you to assign specific permissions for increased security.`
25+
To be able to manage your UpCloud resources, you need to configure credentials for ` + "`" + `upctl` + "`" + ` and enable API access for these credentials. Define the credentials by setting ` + "`" + `UPCLOUD_USERNAME` + "`" + ` and ` + "`" + `UPCLOUD_PASSWORD` + "`" + ` environment variables. API access can be configured on the Account page of the UpCloud Hub. We recommend you to set up a sub-account specifically for the API usage with its own username and password, as it allows you to assign specific permissions for increased security.`
2626

2727
// BuildRootCmd builds the root command
2828
func BuildRootCmd(conf *config.Config) cobra.Command {

0 commit comments

Comments
 (0)