Skip to content

martensson/tpm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

410c895 · Jul 11, 2017

History

34 Commits
Jul 11, 2017
Jun 29, 2017
Jul 11, 2017
Jul 11, 2017
Jun 30, 2016
Jul 11, 2017
Jun 30, 2016

Repository files navigation

tpm Build Status

A CLI client to search and manage passwords inside TeamPasswordManager.

Features:

  • Search and show passwords.
  • Support to add new passwords easily.
  • Supports update and delete of passwords.
  • Supports HMAC for improved API security.
  • Single binary with no other dependencies.

Compability

  • TeamPasswordManager API v4

Installation

  1. Install pre-compiled binary from releases.

  2. Install via Homebrew: brew install martensson/tpm/tpm

  3. Install from source: go get github.com/martensson/tpm

It's that easy!

Using tpm

Login using HMAC-key:

tpm login

Search passwords:

tpm search aws.amazon.com

Show password by ID:

tpm show 100

Show password by ID (json output):

tpm show 100 -o json

Create password:

tpm create aws.amazon.com --username joe --password abc123 --project 10 --email [email protected] --tags amazon,aws,shopping

Update password:

tpm update 100 --password abc123 --access http://aws.amazon.com

Delete password:

tpm delete 100