Skip to content

Commit

Permalink
Merge pull request #32 from RenovoSolutions/30-change-default-timeout…
Browse files Browse the repository at this point in the history
…-to-180s

Change default time out to 180s and bump target cdk version to 1.28.0
  • Loading branch information
bmiller08 authored Oct 14, 2021
2 parents 1f36963 + c2337ae commit e9e3c29
Show file tree
Hide file tree
Showing 5 changed files with 583 additions and 582 deletions.
38 changes: 19 additions & 19 deletions .projen/deps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const { AwsCdkConstructLibrary, ProjectType, NpmAccess, IgnoreFile } = require('
const project = new AwsCdkConstructLibrary({
author: 'Renovo Solutions',
authorAddress: '[email protected]',
cdkVersion: '1.127.0',
cdkVersion: '1.128.0',
defaultReleaseBranch: 'master',
name: '@renovosolutions/cdk-library-certbot',
description: 'AWS CDK Construct Library to manage Lets Encrypt certificate renewals with Certbot',
Expand Down
38 changes: 19 additions & 19 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class Certbot extends cdk.Construct {
}

props.layers = (props.layers === undefined) ? [] : props.layers;
props.timeout = (props.timeout === undefined) ? cdk.Duration.seconds(90) : props.timeout;
props.timeout = (props.timeout === undefined) ? cdk.Duration.seconds(180) : props.timeout;
props.enableInsights = (props.enableInsights === undefined) ? false : props.enableInsights;
props.insightsARN = (props.insightsARN === undefined) ? 'arn:aws:lambda:' + cdk.Stack.of(this).region + ':580247275435:layer:LambdaInsightsExtension:14' : props.insightsARN;

Expand Down
Loading

0 comments on commit e9e3c29

Please sign in to comment.