We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11a2ae4 commit d9a38bfCopy full SHA for d9a38bf
lib/solana/lib/assets/user-data/node.sh
@@ -28,7 +28,7 @@ apt install unzip
28
cd /opt
29
30
echo "Downloading assets zip file"
31
-aws s3 cp $ASSETS_S3_PATH ./assets.zip
+aws s3 cp $ASSETS_S3_PATH ./assets.zip --region $AWS_REGION
32
unzip -q assets.zip
33
34
echo "Install and configure CloudWatch agent"
lib/solana/lib/single-node-stack.ts
@@ -132,7 +132,7 @@ export class SolanaSingleNodeStack extends cdk.Stack {
132
})
133
134
new cw.CfnDashboard(this, 'solana-cw-dashboard', {
135
- dashboardName: STACK_NAME,
+ dashboardName: `${STACK_NAME}-${node.instanceId}`,
136
dashboardBody: dashboardString,
137
});
138
0 commit comments