Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

Commit

Permalink
feat: add to library cloudfront invalidation panel
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipPyrek committed Apr 28, 2024
1 parent fbda554 commit 6e669cc
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 0 deletions.
3 changes: 3 additions & 0 deletions presets/library/cloudfront-invalidation-panel/preset.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { extend, extract } from '../../../src/index.js'

export default [extend('presets/base/typescript-cdk'), extract()]
25 changes: 25 additions & 0 deletions presets/library/cloudfront-invalidation-panel/templates/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<p align="center">
<a href="https://buttonize.io">
<img width="350" alt="Buttonize.io" src="https://user-images.githubusercontent.com/6282843/212024942-9fd50774-ea26-48ba-b2cf-ca2584498c9a.png">
</a>
</p>

---

## CloudFront Invalidation Panel

[![CloudFront Invalidation Panel](https://github.com/buttonize/create-buttonize/assets/6282843/aeb73d4a-e502-4d3b-b1b6-d3ee5538349d)](https://buttonize.io/library/cloudfront-invalidation-panel)

Learn more about CloudFront Invalidation Panel Construct [here](https://buttonize.io/library/cloudfront-invalidation-panel).

## CDK

The `cdk.json` file tells the CDK Toolkit how to execute your app.

### Useful commands

* `npm run build` compile typescript to js
* `npm run watch` watch for changes and compile
* `npx cdk deploy` deploy this stack to your default AWS account/region
* `npx cdk diff` compare deployed stack with current state
* `npx cdk synth` emits the synthesized CloudFormation template
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import * as cdk from 'aws-cdk-lib'
import { Distribution } from 'aws-cdk-lib/aws-cloudfront'
import { HttpOrigin } from 'aws-cdk-lib/aws-cloudfront-origins'
import { Buttonize } from 'buttonize/cdk'
import { CloudFrontInvalidationPanel } from 'buttonize/library'
import { Construct } from 'constructs'

export class ExampleStack extends cdk.Stack {
constructor(scope: Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props)

Buttonize.init(this, {
apiKey: '@@apiKey'
})

const yourDistribution = new Distribution(this, 'YourDistribution', {
defaultBehavior: {
origin: new HttpOrigin('google.com')
}
})

new CloudFrontInvalidationPanel(this, 'CloudFrontPanel', {
distribution: yourDistribution,
paths: {
All: '/*',
Users: '/users',
'Landing page': '/en/lp/mega-campaign'
}
})
}
}

0 comments on commit 6e669cc

Please sign in to comment.