Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mpyw/aws-lambda-billing-slack-notification
Node.js 14 以降向けの AWS 当月利用料金 Slack 通知スクリプト
https://github.com/mpyw/aws-lambda-billing-slack-notification
aws billing lambda slack
Last synced: about 1 month ago
JSON representation
Node.js 14 以降向けの AWS 当月利用料金 Slack 通知スクリプト
- Host: GitHub
- URL: https://github.com/mpyw/aws-lambda-billing-slack-notification
- Owner: mpyw
- License: mit
- Created: 2018-09-07T05:27:33.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-08-02T01:37:40.000Z (over 3 years ago)
- Last Synced: 2024-08-05T08:09:48.006Z (3 months ago)
- Topics: aws, billing, lambda, slack
- Language: TypeScript
- Homepage:
- Size: 33.2 KB
- Stars: 22
- Watchers: 5
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AWS Lambda Billing Slack Notification
Node.js 14 以降向けの AWS 当月利用料金 Slack 通知スクリプト
![実行例](https://user-images.githubusercontent.com/1351893/45200732-2387f880-b2ad-11e8-8f22-be0ee86c9193.png)
## 環境構築手順
1. [Serverless Getting Started Guide](https://www.serverless.com/framework/docs/getting-started/) を参考に, Serverless Framework をグローバルインストール
2. `npm i` を実行## 設定
絵文字は会社で使っているやつに合わせているので,各自 **[src/config.ts](./src/config.ts)** の修正は必須です。
## 使い方
### TypeScript のビルド
```bash
npm run build
```### デプロイを実行
```bash
# 単一アカウント
SLACK_WEBHOOK_URL='https://...' npm run deploy# 複数アカウント
SLACK_WEBHOOK_URL='https://...' AWS_PROFILE=xxxxx ACCOUNT_NAME=アカウントX npm run deploy
SLACK_WEBHOOK_URL='https://...' AWS_PROFILE=yyyyy ACCOUNT_NAME=アカウントY npm run deploy
```