Giter Site home page Giter Site logo

robdefeo / cfn-api-gateway-method Goto Github PK

View Code? Open in Web Editor NEW

This project forked from andrew-templeton/cfn-api-gateway-method

0.0 3.0 0.0 10 KB

Custom::ApiGatewayMethod | AWS CloudFormation Custom Lambda Resource | API Gateway Method

License: MIT License

JavaScript 100.00%

cfn-api-gateway-method's Introduction

cfn-api-gateway-method

Purpose

AWS CloudFormation does not support AWS API Gateway. This is a Lambda-backed custom resource to add the AWS API Gateway's Method to CloudFormation.

This package on NPM
This package on GitHub

Implementation

This Lambda makes use of the Lambda-Backed CloudFormation Custom Resource flow module, cfn-lambda (GitHub / NPM).

Usage

See ./example.template.json for a sample CloudFormation template. The example uses Condition statements, Parameters, and dynamic ServiceToken generation fully.

"MethodLogicalIdInResourcesObject": {
  "Type": "Type": "Custom::ApiGatewayMethod",
  "Properties": {
    "ServiceToken": "arn:aws:lambda:<cfn-region-id>:<your-account-id>:function:<this-deployed-lambda-name>",
    "AuthorizationType": "StringNameOfApi", // REQUIRED enum NONE or AWS_IAM
    "RestApiId": "abcdefghij", // REQUIRED 10 char alphanum String ID for RestApi 
    "HttpMethod": "GET", // REQUIRED enum DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT
    "ResourceId": "zyxwvutsrq" // REQUIRED 10 char alphanum String ID for Resource,
    "ApiKeyRequired": "false", // OPTIONAL enum true or false, defaults to false
    "RequestModels": {                 // Optional hash of key: value pairs, 
      "application/json": "ModelName"  //   key being a valid Content-Type,
      "text/xml": "AnotherModelName"   //   value a model name for the API
    },
    "RequestParameters": {  // Optional hash of key: value pairs,
      "method.request.header.Authorization": true, // Key being a mapping,
      "method.request.querystring.fooparam": true  // value being a bool or bool string
    }
  }
}

Example Template Prerequisites

Though this resource works by itself, the example template in this repository also makes use of other resources in this custom family. You need to install these in your cloud to use the sample template.

Installation of the Resource Service Lambda

Using the Provided Instant Install Script

The way that takes 10 seconds...

# Have aws CLI installed + permissions for IAM and Lamdba
$ npm run cfn-lambda-deploy

You will have this resource installed in every supported Region globally!

Using the AWS Console

... And the way more difficult way.

IMPORTANT: With this method, you must install this custom service Lambda in each AWS Region in which you want CloudFormation to be able to access the ApiGatewayMethod custom resource!

  1. Go to the AWS Lambda Console Create Function view:
  1. Zip this repository into /tmp/ApiGatewayMethod.zip

    $ cd $REPO_ROOT && zip -r /tmp/ApiGatewayMethod.zip;

  2. Enter a name in the Name blank. I suggest: CfnLambdaResouce-ApiGatewayMethod

  3. Enter a Description (optional).

  4. Toggle Code Entry Type to "Upload a .ZIP file"

  5. Click "Upload", navigate to and select /tmp/ApiGatewayMethod.zip

  6. Set the Timeout under Advanced Settings to 10 sec

  7. Click the Role dropdown then click "Basic Execution Role". This will pop out a new window.

  8. Select IAM Role, then select option "Create a new IAM Role"

  9. Name the role lambda_cfn_api_gateway_method (or something descriptive)

  10. Click "View Policy Document", click "Edit" on the right, then hit "OK"

  11. Copy and paste the ./execution-policy.json document.

  12. Hit "Allow". The window will close. Go back to the first window if you are not already there.

  13. Click "Create Function". Finally, done! Now go to Usage or see the example template. Next time, stick to the instant deploy script.

Miscellaneous

Collaboration & Requests

Submit pull requests or Tweet @ayetempleton if you want to get involved with roadmap as well, or if you want to do this for a living :)

License

MIT

Want More CloudFormation or API Gateway?

Work is (extremely) active, published here:
Andrew's NPM Account

cfn-api-gateway-method's People

Contributors

andrew-templeton avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.