Skip to content

Commit

Permalink
update to cdk v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
enghwa committed Jul 12, 2019
1 parent a2a898e commit 50be8b7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ cd springboot-fargate-cdk
npm install

# do this only one time per region, this will bootstrap S3 bucket for CDK
npx cdk@0.36.1 bootstrap
npx cdk@1.0.0 bootstrap

#this will use cdk to deploy base infra, rds, and spring boot app on Fargate
npx cdk@0.36.1 deploy --require-approval never "*"
npx cdk@1.0.0 deploy --require-approval never "*"

```

Expand Down Expand Up @@ -100,6 +100,6 @@ while true; do aws cloudwatch put-metric-data --metric-name CDKTestingCustomMetr
### Clean up

```
npx cdk@0.36.1 destroy
npx cdk@1.0.0 destroy
```
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"description": "cdk quick start",
"devDependencies": {
"aws-cdk": "0.36.1",
"@aws-cdk/core": "0.36.1",
"@aws-cdk/aws-ecs": "0.36.1"
"aws-cdk": "1.0.0",
"@aws-cdk/core": "1.0.0",
"@aws-cdk/aws-ecs": "1.0.0"
},
"scripts": {
"diff": "cdk diff",
Expand All @@ -12,12 +12,12 @@
"destroy": "cdk destroy"
},
"dependencies": {
"@aws-cdk/aws-elasticloadbalancingv2": "^0.36.1",
"@aws-cdk/aws-ecs-patterns": "^0.36.1",
"@aws-cdk/aws-iam": "^0.36.1",
"@aws-cdk/aws-logs": "^0.36.1",
"@aws-cdk/aws-rds": "^0.36.1",
"@aws-cdk/aws-ssm": "^0.36.1",
"@aws-cdk/aws-kms": "^0.36.1"
"@aws-cdk/aws-elasticloadbalancingv2": "^1.0.0",
"@aws-cdk/aws-ecs-patterns": "^1.0.0",
"@aws-cdk/aws-iam": "^1.0.0",
"@aws-cdk/aws-logs": "^1.0.0",
"@aws-cdk/aws-rds": "^1.0.0",
"@aws-cdk/aws-ssm": "^1.0.0",
"@aws-cdk/aws-kms": "^1.0.0"
}
}

0 comments on commit 50be8b7

Please sign in to comment.