Skip to content

Commit

Permalink
Merge pull request #8 from future-architect/migrate-owner
Browse files Browse the repository at this point in the history
owner migration, from d-tsuji to future-architect
  • Loading branch information
d-tsuji authored Mar 6, 2021
2 parents 3d1f221 + f6b4c6c commit 063bd81
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ archives:
release:
prerelease: auto
github:
owner: d-tsuji
owner: future-architect
name: awsmfa
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ GOBIN ?= $(shell go env GOPATH)/bin
GODOWNLOADER_VERSION := 0.1.0
export GO111MODULE=on

repo_name := d-tsuji/awsmfa
repo_name := future-architect/awsmfa
current_dir := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))

.PHONY: all
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
awsmfa (AWS MFA Refresher)
==========================

[![Test Status](https://github.com/d-tsuji/awsmfa/workflows/test/badge.svg?branch=master)][actions]
[![Test Status](https://github.com/future-architect/awsmfa/workflows/test/badge.svg?branch=master)][actions]
[![Apache-2.0 license](https://img.shields.io/badge/license-Apache2.0-blue.svg)][license]

[actions]: https://github.com/d-tsuji/awsmfa/actions?workflow=test
[license]: https://github.com/d-tsuji/awsmfa/blob/master/LICENSE
[actions]: https://github.com/future-architect/awsmfa/actions?workflow=test
[license]: https://github.com/future-architect/awsmfa/blob/master/LICENSE

`awsmfa` replaces the config(`~/.aws/config`) and credentials(`~/.aws/credentials`) for MFA in AWS.

Expand Down Expand Up @@ -40,7 +40,7 @@ $ awsmfa [options] [token-code]
### Example

```
$ awsmfa --serial-number arn:aws:iam::123456789012:mfa/d-tsuji --profile my-profile 123456
$ awsmfa --serial-number arn:aws:iam::123456789012:mfa/future-architect --profile my-profile 123456
2021/02/28 11:01:49 {
Credentials: {
AccessKeyId: "AKIAIOSFODNN7EXAMPLE",
Expand Down Expand Up @@ -119,12 +119,12 @@ Update `aws_access_key_id`, `aws_secret_access_key` and `aws_session_token` in t

```
# binary
$ curl -sfL https://raw.githubusercontent.com/d-tsuji/awsmfa/master/install.sh | sudo sh -s -- -b /usr/local/bin
$ curl -sfL https://raw.githubusercontent.com/future-architect/awsmfa/master/install.sh | sudo sh -s -- -b /usr/local/bin
```

- From source code

```
# go get
$ go get github.com/d-tsuji/awsmfa/cmd/awsmfa
$ go get github.com/future-architect/awsmfa/cmd/awsmfa
```
2 changes: 1 addition & 1 deletion cmd/awsmfa/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"
"os"

"github.com/d-tsuji/awsmfa"
"github.com/future-architect/awsmfa"
"github.com/urfave/cli/v2"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/d-tsuji/awsmfa
module github.com/future-architect/awsmfa

go 1.15

Expand Down
6 changes: 3 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ set -e
usage() {
this=$1
cat <<EOF
$this: download go binaries for d-tsuji/awsmfa
$this: download go binaries for future-architect/awsmfa
Usage: $this [-b] bindir [-d] [tag]
-b sets bindir or installation directory, Defaults to ./bin
-d turns on debug logging
[tag] is a tag from
https://github.com/d-tsuji/awsmfa/releases
https://github.com/future-architect/awsmfa/releases
If tag is missing, then the latest will be used.
Generated by godownloader
Expand Down Expand Up @@ -350,7 +350,7 @@ End of functions from https://github.com/client9/shlib
EOF

PROJECT_NAME="awsmfa"
OWNER=d-tsuji
OWNER=future-architect
REPO="awsmfa"
BINARY=awsmfa
FORMAT=tar.gz
Expand Down

0 comments on commit 063bd81

Please sign in to comment.