Skip to content

Commit

Permalink
upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
lora-reames committed Sep 19, 2023
1 parent 11e45fb commit eec644b
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 33 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml

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

6 changes: 3 additions & 3 deletions .github/workflows/release.yml

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

2 changes: 1 addition & 1 deletion .github/workflows/upgrade-main.yml

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

6 changes: 3 additions & 3 deletions .projen/deps.json

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

6 changes: 3 additions & 3 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ import { javascript } from "projen";
const project = new VendrCdkConstruct({
author: "Lora Reames",
authorAddress: "[email protected]",
cdkVersion: "2.37.1",
cdkVersion: "2.96.2",
defaultReleaseBranch: "main",
name: "account-closure",
packageName: "@vendrinc/account-closure",
minNodeVersion: "16.18.1",
minNodeVersion: "18.18.0",
npmAccess: javascript.NpmAccess.PUBLIC,
repositoryUrl: "https://github.com/vendrinc/account-closure.git",
npmRegistryUrl: "https://npm.pkg.github.com",
description:
"cdk construct for automating AWS account closure and dealing with the AWS close account quota",
deps: ["aws-cdk-lib"],
bundledDeps: ["@aws-solutions-constructs/aws-eventbridge-stepfunctions"],
devDeps: ["node@16", "aws-cdk-lib", "@vendrinc/projen"],
devDeps: ["node@18", "aws-cdk-lib", "@vendrinc/projen"],
prettier: true,
eslint: true,
});
Expand Down
32 changes: 16 additions & 16 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json

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

3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
Succeed,
Condition,
JsonPath,
DefinitionBody,
} from "aws-cdk-lib/aws-stepfunctions";
import { CallAwsService } from "aws-cdk-lib/aws-stepfunctions-tasks";
import { Construct } from "constructs";
Expand Down Expand Up @@ -130,7 +131,7 @@ export class AccountClosureStepFunction extends Construct {

new EventbridgeToStepfunctions(this, "AccountClosureStepFunction", {
stateMachineProps: {
definition,
definitionBody: DefinitionBody.fromChainable(definition),
},
eventRuleProps: {
schedule: Schedule.rate(Duration.hours(1)),
Expand Down

0 comments on commit eec644b

Please sign in to comment.