Skip to content

Commit

Permalink
Merge pull request #68 from aws-solutions/feature/v4.2.0
Browse files Browse the repository at this point in the history
feature to release merge
  • Loading branch information
eggoynes committed Apr 10, 2023
2 parents a06693d + 301c9a1 commit 0701e90
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [4.2.0] - 2023-4-6
## [4.2.0] - 2023-4-10

### New
- Converted project from CDK 1 to CDK 2 project.
Expand Down
2 changes: 1 addition & 1 deletion buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 0.2
phases:
install:
runtime-versions:
nodejs: 16
nodejs: 16
pre_build:
commands:
- echo "Installing dependencies and executing unit tests - `pwd`"
Expand Down
7 changes: 5 additions & 2 deletions source/constructs/lib/live-streaming.ts
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,9 @@ export class LiveStreaming extends cdk.Stack {
* S3: Logs bucket for CloudFront
*/
const logsBucket = new s3.Bucket(this, 'LogsBucket', {
enforceSSL: true,
versioned: true,
removalPolicy: cdk.RemovalPolicy.RETAIN,
accessControl: s3.BucketAccessControl.LOG_DELIVERY_WRITE,
encryption: s3.BucketEncryption.S3_MANAGED,
blockPublicAccess: {
Expand Down Expand Up @@ -891,8 +894,8 @@ export class LiveStreaming extends cdk.Stack {
const solutionId = 'SO0013';
const solutionName = 'Live Streaming on AWS';
const applicationName = `live-streaming-on-aws-${cdk.Aws.STACK_NAME}`;
const attributeGroup = new appreg.AttributeGroup(this, 'AppRegistryAttributeGroup', {
attributeGroupName: `${cdk.Aws.REGION}-${cdk.Aws.STACK_NAME}`,
const attributeGroup = new appreg.AttributeGroup(this, 'AppRegistryAttributeId', {
attributeGroupName: `A30-${cdk.Aws.REGION}-${cdk.Aws.STACK_NAME}`,
description: "Attribute group for solution information.",
attributes: {
ApplicationType: 'AWS-Solutions',
Expand Down

0 comments on commit 0701e90

Please sign in to comment.