mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-18 20:51:45 +00:00

Remove all global variables, and clean up tsnet and cmd/tailscale's usage. This is in prep for using this package for the web API too (it has the best package name). RELNOTE=tailscale.com/client/tailscale package refactored w/ LocalClient type Change-Id: Iba9f162fff0c520a09d1d4bd8862f5c5acc9d7cd Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
35 lines
696 B
Go
35 lines
696 B
Go
// Copyright (c) 2022 Tailscale Inc & AUTHORS All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package cli
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/peterbourgon/ff/v3/ffcli"
|
|
)
|
|
|
|
var idTokenCmd = &ffcli.Command{
|
|
Name: "id-token",
|
|
ShortUsage: "id-token <aud>",
|
|
ShortHelp: "fetch an OIDC id-token for the Tailscale machine",
|
|
Exec: runIDToken,
|
|
}
|
|
|
|
func runIDToken(ctx context.Context, args []string) error {
|
|
if len(args) != 1 {
|
|
return errors.New("usage: id-token <aud>")
|
|
}
|
|
|
|
tr, err := localClient.IDToken(ctx, args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Println(tr.IDToken)
|
|
return nil
|
|
}
|