-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.go
44 lines (36 loc) · 975 Bytes
/
main.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
package main
import (
"context"
"fmt"
"github.com/aidansteele/cloudkey/cmds"
"github.com/spf13/cobra"
)
func main() {
root := &cobra.Command{
Use: "cloudkey",
Short: "cloudkey is a solution for secret-less AWS access",
}
root.PersistentFlags().String("card", "", "Name of Yubikey. Optional if only one key is connected")
credentialsCmd := &cobra.Command{
Use: "credentials",
Short: "To be invoked by ~/.aws/config credential_process",
RunE: cmds.CredentialsCmd,
}
enrolCmd := &cobra.Command{
Use: "enrol",
Short: "Enrol a new identity and smart card",
RunE: cmds.EnrolCmd,
}
enrolCmd.PersistentFlags().String("identity", "", "Name of identity to enrol")
enrolCmd.PersistentFlags().StringSlice("role", []string{}, "IAM role name(s) to attach to identity")
root.AddCommand(
credentialsCmd,
enrolCmd,
)
ctx := context.Background()
err := root.ExecuteContext(ctx)
if err != nil {
fmt.Printf("%+v\n", err)
panic(err)
}
}