@ez4/aws-gateway
v0.47.0
Published
EZ4: Self-managed AWS API gateway provider
Readme
EZ4: AWS Gateway
It provides all the components to manage API gateways on AWS.
Getting started
Install
npm install @ez4/aws-gateway -DPermission
Ensure the user performing deployments has the permissions below:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "GatewayManagement",
"Effect": "Allow",
"Action": ["apigateway:Get", "apigateway:Post", "apigateway:Patch", "apigateway:Delete"],
"Resource": [
"arn:aws:apigateway:*::/apis",
"arn:aws:apigateway:*::/apis/*",
"arn:aws:apigateway:*::/tags/*",
"arn:aws:apigateway:*::*"
]
},
{
"Sid": "GatewayAccessLog",
"Effect": "Allow",
"Action": [
"logs:CreateLogDelivery",
"logs:UpdateLogDelivery",
"logs:DeleteLogDelivery",
"logs:ListLogDeliveries",
"logs:GetLogDelivery"
],
"Resource": ["*"]
}
]
}License
MIT License
