kyohei's blog

profile picture
Written by Kyohei Tsukuda who lives and works in Tokyo 🇯🇵 , building useful things 🔧.
email / facebook / X / GitHub

6 pages tagged with "AWS"

AWS AmplifyでCLIからbasic認証の設定を解除する

June 28, 2021 - 394 words - 2 mins
また Amplify ネタ。 AWS Amplify で next.js(SSR)を利用した frontend の場合、現状 basic 認証が利用できません。 https://docs.aws.amazon.com/ja_jp/amplify/latest/userguide/server-side-rendering-amplify.html#access-control-unsupporte… read more

AWS Amplify + Cognito + Next.jsで認証付きページ作る

June 14, 2021 - 2373 words - 12 mins
AWS Amplify + Cognito + Next.js で認証付きページ(ログインが必要なページ)を作る方法です。 モチベ やりたいこと とあるプロダクトの管理画面を作りたい 管理画面はプロダクトサイトとは別の場所(ドメイン)で作成し、プロダクトサイトと切り離す。 管理ユーザ用のテーブルは作りたくない 認証機能を 0 から作るのは面倒なので、Cognito の認証機能を利用したい。(UI… read more

foreverで動作しているNode.jsのアプリケーションログをCloudWatchに送る

June 02, 2021 - 973 words - 5 mins
forever を利用して daemon で起動しているアプリケーションのログを CloudWatch に流す方法です。 forever のログファイル forever はアプリケーション起動時にデフォルトで ~/.forever 以下に a93c.log のようなランダムなファイル名のログファイルを出力します。 今回は CloudWatch Agent で取得するためファイル名を固定します。 f… read more

Code Deployを使ったnode.jsアプリケーションデプロイ方法

May 20, 2021 - 711 words - 4 mins
node.js のアプリケーションを EC2 へ自動デプロイする方法です EC2 側の設定 EC2 に CodeDeploy-Agent をインストール https://docs.aws.amazon.com/codedeploy/latest/userguide/codedeploy-agent-operations-install-linux.html こちらを参考に CodeDeploy-A… read more

AWS Amplify を Slack からデプロイする

July 08, 2019 - 1274 words - 7 mins
⚠️ 2019/07 の段階でOutgoing WebhooksはLegacy扱いとなり、 SlackAppへの移行が推奨されています。 AWS Amplify は通常コミット時に自動的にデプロイのスクリプトが走りますが、 Git で管理していないデータを取り込んだりする際には、 以下のように amplify-cli のコマンドをローカルから叩いて実行する必要があります。 $ export… read more

お名前.comで取得したドメインをamplifyのドメインに指定する

June 04, 2019 - 298 words - 2 mins
aws Amplify でホストしたいサイトのドメインを、お名前.com で取得したドメインを設定する場合以下の手順を利用します。 前提として お名前.com でドメインを購入した状態 AWS Amplify で何かしらサイトを作成している状態 とします。 ネームスペースを移行 まず、aws Route53 でホストゾーンを作成します。 以下を設定し生成。 [ドメイン名]はお名前.com … read more