1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

WindowsにAWS CLI v2をインストールする必要はない

Last updated at Posted at 2024-06-28

Dockerを使えばレジストリを変えずに済む

  • コマンドプロンプト
>doskey aws=docker run --rm -it -v %userprofile%/.aws:/root/.aws amazon/aws-cli $*
>aws configure
AWS Access Key ID [****************DD7A]:
AWS Secret Access Key [****************IiOW]:
Default region name [us-east-1]:
Default output format [json]:
  • Gitbash
$ alias aws='MSYS_NO_PATHCONV=1 docker run --rm -it -v $HOME/.aws:/root/.aws amazon/aws-cli'
$ aws configure
AWS Access Key ID [****************DD7A]:
AWS Secret Access Key [****************IiOW]:
Default region name [us-east-1]:
Default output format [json]:
  • WSL
$ alias aws='docker run --rm -it -v $HOME/.aws:/root/.aws amazon/aws-cli'
$ aws configure
AWS Access Key ID [****************DD7A]:
AWS Secret Access Key [****************IiOW]:
Default region name [us-east-1]:
Default output format [json]:

参考

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?