Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
6cccb86
Object storage credentials group create command
vicentepinto98 Feb 27, 2024
f39f9ce
Delete credentials-group
vicentepinto98 Feb 28, 2024
ce03eaf
List credentials-group, modify create
vicentepinto98 Feb 28, 2024
d720a51
Merge branch 'main' of https://github.com/stackitcloud/stackit-cli in…
vicentepinto98 Feb 28, 2024
e0d5ccf
add unit test - group name empty check
GokceGK Mar 1, 2024
6c9f80e
Update long description
GokceGK Mar 1, 2024
6301742
Change text formatting
GokceGK Mar 1, 2024
4b93ddc
Change text formatting
GokceGK Mar 1, 2024
d1c31b3
Update command in example
GokceGK Mar 1, 2024
c7c0ce7
Update command in example
GokceGK Mar 1, 2024
66a2639
Merge remote-tracking branch 'origin/vp/object-storage-credentials' i…
GokceGK Mar 1, 2024
c114354
add name to prompt and success messages
GokceGK Mar 1, 2024
74d3c92
Change condition handling
GokceGK Mar 1, 2024
e0c3841
Merge remote-tracking branch 'origin/vp/object-storage-credentials' i…
GokceGK Mar 1, 2024
1b6ad53
fix return value issue
GokceGK Mar 1, 2024
0f1bb18
Object storage credentials create command
GokceGK Mar 5, 2024
50ea661
Object storage credentials delete command
GokceGK Mar 5, 2024
c6f732f
Object storage credentials list command
GokceGK Mar 5, 2024
b9c2627
Object storage credentials commands extension
GokceGK Mar 5, 2024
4a56080
Specify credentials group for the name variables
GokceGK Mar 5, 2024
d71e007
Fix unit tests
GokceGK Mar 5, 2024
337d936
Add unit test for the utils
GokceGK Mar 6, 2024
886de10
Merge branch 'main' into gg/object-storage-credentials
GokceGK Mar 6, 2024
74f9d14
Fix linting issues - false positive
GokceGK Mar 6, 2024
b2c32df
Merge remote-tracking branch 'origin/gg/object-storage-credentials' i…
GokceGK Mar 6, 2024
691f8a9
Fix linting issues
GokceGK Mar 6, 2024
701361c
Update create command description
GokceGK Mar 7, 2024
b0dea40
Update create command description
GokceGK Mar 7, 2024
0495a2f
Update create command description
GokceGK Mar 7, 2024
b7b1516
Update create command example description
GokceGK Mar 7, 2024
dc65bd1
Update create command output
GokceGK Mar 7, 2024
ea0d7e7
Update create command credential
GokceGK Mar 7, 2024
afe6a05
Update delete command short description
GokceGK Mar 7, 2024
edbd250
Update delete command long description
GokceGK Mar 7, 2024
656b8d7
Update delete command promt message
GokceGK Mar 7, 2024
ca9b601
Update delete command output
GokceGK Mar 7, 2024
65b5966
Update list command short description
GokceGK Mar 7, 2024
b0c0f89
Update list command long description
GokceGK Mar 7, 2024
7af9107
Update list command example description
GokceGK Mar 7, 2024
3f6f1ba
Update list command example description
GokceGK Mar 7, 2024
b6272ee
Update list command example description
GokceGK Mar 7, 2024
933a7bc
Update list command message
GokceGK Mar 7, 2024
b1721db
Update list command table header
GokceGK Mar 7, 2024
fae599c
Update flag in create command
GokceGK Mar 7, 2024
e7b7647
Update expire date flag in create command
GokceGK Mar 7, 2024
6afcced
Print expire date in create output
GokceGK Mar 7, 2024
8ffb0d9
Fixes for PR comments
GokceGK Mar 7, 2024
f8a8f94
Update return value
GokceGK Mar 7, 2024
c80a81a
add missing quote
GokceGK Mar 7, 2024
5abc3c1
add docs
GokceGK Mar 7, 2024
62288e9
Update long description
GokceGK Mar 7, 2024
3215c7a
Update example description
GokceGK Mar 7, 2024
8780fad
Update example description
GokceGK Mar 7, 2024
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
Prev Previous commit
Next Next commit
Update return value
Co-authored-by: João Palet <joao.palet@outlook.com>
  • Loading branch information
GokceGK and joaopalet authored Mar 7, 2024
commit f8a8f94a468f76d9367b8e5f5f38b6d282cded72
2 changes: 1 addition & 1 deletion internal/pkg/services/object-storage/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func GetCredentialsName(ctx context.Context, apiClient ObjectStorageClient, proj

credentials := resp.AccessKeys
if credentials == nil {
return "", fmt.Errorf("nil Object Storage credentials list: %w", err)
return "", fmt.Errorf("nil Object Storage credentials list)
}

for _, credential := range *credentials {
Expand Down