Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/metal-olives-leave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@aligent/cdk-domain-hosting": patch
---

Updated readme install step
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@ These are all written for CDK v2. See the official AWS guide for how to migrate

| Construct | Description |
| ------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
| [basic-auth](packages/basic-auth) | Restricts CloudFront access behind authentication |
| [cloudfront-security-headers](packages/cloudfront-security-headers) | Adds HTTP security headers to origin responses |
| [domain-hosting](packages/domain-hosting) | Provides a construct to manage a Route53 or external domain along with (optionally) the certificate and records |
| [esbuild](packages/esbuild) | Provides a construct which allows AWS CDK's bundling process to use the esbuild tool to generate a bundled output |
| [feature-env-handlers](packages/feature-env-handlers) | Lambda@Edge handlers to support feature environments |
| [geoip-redirect](packages/geoip-redirect) | Lambda@Edge handlers to redirect users based on region |
| [graphql-server](packages/graphql-mesh-server) | Creates a [GraphQL Mesh](https://the-guild.dev/graphql/mesh) server to assist with data transformation from multiple sources |
| [header-change-detection](packages/header-change-detection) | Creates a Lambda function that periodically scans security headers and sends the results to SNS |
| [prerender-fargate](packages/prerender-fargate) | Self-hosted prerender to handle prerender bot requests |
| [prerender-proxy](packages/prerender-proxy) | Provides functions to adjust self-hosted prerender behaviour |
| [rabbitmq](packages/rabbitmq) | Create a RabbitMQ cluster within CDK |
| [shared-vpc](packages/shared-vpc) | Creates a single VPC with static IP for micro-services with DNS management |
| [static-hosting](packages/static-hosting) | Construct to deploy infrastructure for static webpage hosting |
| [step-function-from-file](packages/step-function-from-file) | Create a Step Function state machine definition from a given JSON or YAML file |
| [waf](packages/waf) | Configurable WAF infrastructure |
| [basic-auth](packages/constructs/basic-auth) | Restricts CloudFront access behind authentication |
| [cloudfront-security-headers](packages/constructs/cloudfront-security-headers) | Adds HTTP security headers to origin responses |
| [domain-hosting](packages/constructs/domain-hosting) | Provides a construct to manage a Route53 or external domain along with (optionally) the certificate and records |
| [esbuild](packages/constructs/esbuild) | Provides a construct which allows AWS CDK's bundling process to use the esbuild tool to generate a bundled output |
| [feature-env-handlers](packages/constructs/feature-env-handlers) | Lambda@Edge handlers to support feature environments |
| [geoip-redirect](packages/constructs/geoip-redirect) | Lambda@Edge handlers to redirect users based on region |
| [graphql-server](packages/constructs/graphql-mesh-server) | Creates a [GraphQL Mesh](https://the-guild.dev/graphql/mesh) server to assist with data transformation from multiple sources |
| [header-change-detection](packages/constructs/header-change-detection) | Creates a Lambda function that periodically scans security headers and sends the results to SNS |
| [prerender-fargate](packages/constructs/prerender-fargate) | Self-hosted prerender to handle prerender bot requests |
| [prerender-proxy](packages/constructs/prerender-proxy) | Provides functions to adjust self-hosted prerender behaviour |
| [rabbitmq](packages/constructs/rabbitmq) | Create a RabbitMQ cluster within CDK |
| [shared-vpc](packages/constructs/shared-vpc) | Creates a single VPC with static IP for micro-services with DNS management |
| [static-hosting](packages/constructs/static-hosting) | Construct to deploy infrastructure for static webpage hosting |
| [step-function-from-file](packages/constructs/step-function-from-file) | Create a Step Function state machine definition from a given JSON or YAML file |
| [waf](packages/constructs/waf) | Configurable WAF infrastructure |

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion packages/constructs/domain-hosting/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ npm install @aligent/cdk-domain-hosting aws-cdk-lib constructs
Or with yarn:

```bash
yarn add @aligent/cdk-static-hosting aws-cdk-lib constructs
yarn add @aligent/cdk-domain-hosting aws-cdk-lib constructs
```

### Peer Dependencies
Expand Down