0
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?

More than 1 year has passed since last update.

Lambda 関数 URLの使い道について考えてみる

Last updated at Posted at 2023-03-21

Lambda関数URLの使い道について考えてみます。

と言っても2つしか思いつきませんでしたが...

  • WebAPIとしての利用
    • API GateWayを使用せずに直接Lambdaを呼び出す
      • Lambda関数URLの認証タイプでAWS_IAMを使い、CloudFront経由にアクセスを絞る
        • CloudFrontではWAFを使えるので、Lambda関数URLを安全に使うことができる
        • 実装方法は以下の記事参照

  • 非同期処理としての利用
    • Lambdaに非同期処理を実装しておく
      • ECS/EC2などのWEBサーバで発生した非同期処理はLambdaで実行するようにしておく
        • Lambda関数URLの認証タイプでAWS_IAMにしておき、WEBサーバ以外のリクエストは受ける気ないようにしておく
0
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
0
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?