Skip to content
This repository was archived by the owner on Feb 12, 2026. It is now read-only.

Commit acaac5d

Browse files
committed
renamed springrole specifier
1 parent 1012eec commit acaac5d

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import * as route53Targets from "aws-cdk-lib/aws-route53-targets";
1515
import {IEcsLoadBalancerTarget} from "aws-cdk-lib/aws-ecs";
1616

1717

18-
export class SpringRoleBlockchainCdkStack extends Stack {
18+
export class BlockchainCdkStack extends Stack {
1919
constructor(scope: Construct, id: string, props?: StackProps) {
2020
super(scope, id, props);
2121

Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
#!/usr/bin/env node
22
import * as cdk from 'aws-cdk-lib';
3-
import { SpringRoleBlockchainCdkStack } from '../aws/springrole-blockchain-cdk-stack';
3+
import { BlockchainCdkStack } from '../aws/blockchain-cdk-stack';
44
import {pipeline} from "../aws/constant/application_constants";
55

66
const app = new cdk.App();
7-
new SpringRoleBlockchainCdkStack(app, 'BlockchainCdkStack',
7+
new BlockchainCdkStack(app, 'BlockchainCdkStack',
88
{
9-
109
env: { account: pipeline.accountId, region: pipeline.region, }
1110
});

cdk.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"app": "npx ts-node --prefer-ts-exts bin/springrole-blockchain-cdk.ts",
2+
"app": "npx ts-node --prefer-ts-exts bin/blockchain-cdk.ts",
33
"watch": {
44
"include": [
55
"**"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "springrole-blockchain-cdk",
2+
"name": "blockchain-cdk",
33
"version": "0.1.0",
44
"bin": {
5-
"springrole-blockchain-cdk": "bin/springrole-blockchain-cdk.js"
5+
"springrole-blockchain-cdk": "bin/blockchain-cdk.js"
66
},
77
"scripts": {
88
"build": "tsc",

test/springrole-blockchain-cdk.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import * as cdk from 'aws-cdk-lib';
22
import { Template, Match } from 'aws-cdk-lib/assertions';
3-
import * as SpringroleBlockchainCdk from '../aws/springrole-blockchain-cdk-stack';
3+
import * as BlockchainCdk from '../aws/blockchain-cdk-stack';
44

55
test('SQS Queue and SNS Topic Created', () => {
66
const app = new cdk.App();
77
// WHEN
8-
const stack = new SpringroleBlockchainCdk.SpringRoleBlockchainCdkStack(app, 'MyTestStack');
8+
const stack = new BlockchainCdk.BlockchainCdkStack(app, 'MyTestStack');
99
// THEN
1010

1111
const template = Template.fromStack(stack);

0 commit comments

Comments
 (0)