A package for managing credentials
Project description
localstack
locakstackを利用することで、AWSのリソースをローカルで扱うことができる。
利用のための準備
~/.aws/credentialsに、以下のようなアカウントを作成
[localstack]
aws_access_key_id = dummy
aws_secret_access_key = dummy
region=ap-northeast-1
利用例
aws --endpoint-url=http://localhost:4567 --profile localstack {awsコマンド}
たとえばS3バケットを作成した場合は、以下のようなコマンドを実行する。
# バケット作成
aws --endpoint-url=http://localhost:4567 --profile localstack s3 mb s3://credold-sample
# バケット一覧表示
aws --endpoint-url=http://localhost:4567 --profile localstack s3 ls
PyPi
pip install twine が完了しており、~/.pypircがある状態で、以下を実行
python setup.py sdist bdist_wheel
# テスト
twine upload --repository pypitest dist/*
# 本番
twine upload dist/*
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
credold-0.1.2.tar.gz
(4.6 kB
view hashes)