Giter Site home page Giter Site logo

titanjer / cdk-cloudfront-plus Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ricotoothless/cdk-cloudfront-plus

0.0 1.0 0.0 928 KB

CDK constructs library that allows you to build AWS CloudFront Extensions in JavaScript, TypeScript or Python

License: Apache License 2.0

JavaScript 5.09% TypeScript 92.17% Python 1.68% Shell 1.06%

cdk-cloudfront-plus's Introduction

NPM version PyPI version Release

cdk-cloudfront-plus

CDK constructs library that allows you to build AWS CloudFront Extensions in JavaScript, TypeScript or Python.

Sample

import * as cfplus from 'cdk-cloudfront-plus';

const app = new cdk.App();

const stack = new cdk.Stack(app, 'demo-stack');

// prepare the `modify resonse header` extension
const modifyRespHeader = new extensions.ModifyResponseHeader(stack, 'ModifyResp');

// prepare the `anti-hotlinking` extension
const antiHotlinking = new extensions.AntiHotlinking(stack, 'AntiHotlink', {
  referer: [
    'example.com',
    'exa?ple.*',
  ],
});

// create the cloudfront distribution with extension(s)
new Distribution(stack, 'dist', {
  defaultBehavior: {
    origin: new origins.HttpOrigin('aws.amazon.com'),
    edgeLambdas: [
      modifyRespHeader,
      antiHotlinking,
    ],
  },
});

Available Extensions in AWS CDK

Extension Name Category Solution ID Function/Folder Name Status Contributor
Access Origin by geolocation Origin Selection SO8118 cf-access-origin-by-geolocation Completed @pahud PR#52
Redirect by geolocation Origin Selection SO8135 cf-redirect-by-geolocation Completed @minche-tsai PR#50
Convert Query String Override Request SO8113 cf-convert-query-string WIP(ScottHsieh) -
OAuth2 Authentication Authentication SO8131 cf-authentication-by-oauth2 Completed @dwchiang PR#59
Cognito Redirect Authentication SO8132 cf-authentication-by-cognito-redirect WIP(BabooPan) -
Custom Log to Kinesis Firehose Logging SO8133 cf-global-data-ingestion WIP(Titan) -
HTTP 302 from Origin URL Redirect SO8103 cf-http302-from-origin WIP(Rico) -
Default Directory Index for Amazon S3 Origin URL Redirect SO8134 cf-default-dir-index Completed @guan840912 PR#21
Modify Response Header Header Rewrite SO8105 cf-modify-response-header Completed @pahud PR#45
Custom Error Page Header Rewrite SO8136 cf-custom-error-page Completed @BabooPan PR#46
Anti Hotlinking Security SO8126 cf-anti-hotlinking Completed @pahud PR#2
Add Security Headers Security SO8102 cf-add-security-headers Completed @pahud PR#7
Failover to alternative origin Origin Selection SO8120 cf-multiple-origin-ip-retry Completed @guan840912 PR#58

cdk-cloudfront-plus's People

Contributors

baboopan avatar benkajaja avatar dwchiang avatar minche-tsai avatar neilkuan avatar pahud avatar titanjer avatar

Watchers

 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.