-
Notifications
You must be signed in to change notification settings - Fork 20
/
iam_access_key_revoke.go
62 lines (45 loc) · 1.53 KB
/
iam_access_key_revoke.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package cmd
import (
"fmt"
"github.com/spf13/cobra"
"github.com/exoscale/cli/pkg/account"
"github.com/exoscale/cli/pkg/globalstate"
egoscale "github.com/exoscale/egoscale/v2"
exoapi "github.com/exoscale/egoscale/v2/api"
)
type iamAccessKeyRevokeCmd struct {
cliCommandSettings `cli-cmd:"-"`
_ bool `cli-cmd:"revoke"`
APIKey string `cli-arg:"#"`
Force bool `cli-short:"f" cli-usage:"don't prompt for confirmation"`
}
func (c *iamAccessKeyRevokeCmd) cmdAliases() []string { return gCreateAlias }
func (c *iamAccessKeyRevokeCmd) cmdShort() string {
return "Revoke an IAM access key"
}
func (c *iamAccessKeyRevokeCmd) cmdLong() string { return "" }
func (c *iamAccessKeyRevokeCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *iamAccessKeyRevokeCmd) cmdRun(_ *cobra.Command, _ []string) error {
zone := account.CurrentAccount.DefaultZone
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(account.CurrentAccount.Environment, zone))
if !c.Force {
if !askQuestion(fmt.Sprintf("Are you sure you want to revoke IAM access key IP %s?", c.APIKey)) {
return nil
}
}
var err error
decorateAsyncOperation(fmt.Sprintf("Revoking IAM access key %s...", c.APIKey), func() {
err = globalstate.EgoscaleClient.RevokeIAMAccessKey(ctx, zone, &egoscale.IAMAccessKey{Key: &c.APIKey})
})
if err != nil {
return err
}
return nil
}
func init() {
cobra.CheckErr(registerCLICommand(iamAccessKeyCmd, &iamAccessKeyRevokeCmd{
cliCommandSettings: defaultCLICmdSettings(),
}))
}