0.7.0 • Published 12 months ago

@ez4/aws-gateway v0.7.0

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

EZ4: AWS Gateway

It provides all the components to manage API gateways on AWS.

Getting started

Install

npm install @ez4/aws-gateway -D

Permission

Ensure the user performing deployments has the permissions below:

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "GatewayManagement",
      "Effect": "Allow",
      "Action": ["apigateway:Post", "apigateway:Patch", "apigateway:Delete"],
      "Resource": [
        "arn:aws:apigateway:*::/apis",
        "arn:aws:apigateway:*::/apis/*",
        "arn:aws:apigateway:*::/tags/*",
        "arn:aws:apigateway:*::*"
      ]
    }
  ]
}

License

MIT License