0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【AWS】API Gateway Privateについて

Last updated at Posted at 2024-09-26

API Gatewayは、下図の通り4種類あります。プライベート API Gateway の「プライベート」とは、「パブリックから直接アクセスできない」となるだけで、あなただけがアクセスできるプライベートネットワーク内の API という意味ではありません。(だって、それって VPC ですよね。API Gateway は VPC に属しません)
なので、AWS のプライベートネットワーク内においては特に制限をしない限り、誰でもアクセスできる API Gateway です。
9.JPG
10.JPG
プライベート API GatewayはInterface Endpoint経由でアクセスしているので、内部といってもリソースポリシーが必要です。

■リソースポリシー
リソースポリシー
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Principal": "*",
      "Action": "execute-api:Invoke",
      "Resource": "arn:aws:execute-api:ap-northeast-1:809449918173:dd75nu3d01/*"
    },
    {
      "Effect": "Deny",
      "Principal": "*",
      "Action": "execute-api:Invoke",
      "Resource": "arn:aws:execute-api:ap-northeast-1:809449918173:dd75nu3d01/*",
      "Condition": {
        "StringNotEquals": {
          "aws:SourceVpce": "vpce-0c76e9272ffbeef67"
        }
      }
    }
  ]
}
■API Gateway

作成時、エンドポイントの入力は求められています。
11.JPG

■API Gateway Endpoint

12.JPG
AZ二つ跨いでいるので、各ENIに対して適切なセキュリティグループの作成が必要です。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?