AWS api gatewayでstagesごとにIP制限をかける
1296 ワード
やりたいこと
API Gateway のstages ごとにIP許諾の設定をする。
やったこと
Resource Policyで各stagesにIPを指定する。
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": "*",
"Action": "execute-api:Invoke",
"Resource": "arn:aws:execute-api:region:account-id:api-id/stage-name1/*",
"Condition": {
"IpAddress": {
"aws:SourceIp": "hogehoge"
}
}
},
{
"Effect": "Allow",
"Principal": "*",
"Action": "execute-api:Invoke",
"Resource": "arn:aws:execute-api:region:account-id:api-id/stage-name2/*",
"Condition": {
"IpAddress": {
"aws:SourceIp": "fugafuga"
}
}
}
]
}
Author And Source
この問題について(AWS api gatewayでstagesごとにIP制限をかける), 我々は、より多くの情報をここで見つけました https://qiita.com/h_kamada/items/0b3ba2082a8aada21cf3著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .