Skip to content

Commit 66060ce

Browse files
mateon01claude
andcommitted
fix(opensearch): update default instance config in app.ts to match opensearch-stack
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 6de908d commit 66060ce

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • opensearch/opensearch_ubi/bin

opensearch/opensearch_ubi/bin/app.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ const account = process.env.CDK_DEFAULT_ACCOUNT ?? process.env.AWS_ACCOUNT_ID;
4141
// OpenSearch configuration
4242
const openSearchConfig = {
4343
version: app.node.tryGetContext('opensearchVersion') ?? '3.3',
44-
instanceType: app.node.tryGetContext('instanceType') ?? 't3.small.search',
45-
instanceCount: parseInt(app.node.tryGetContext('instanceCount') ?? '1'),
44+
instanceType: app.node.tryGetContext('instanceType') ?? 't3.medium.search',
45+
instanceCount: parseInt(app.node.tryGetContext('instanceCount') ?? '3'),
4646
ebsVolumeSize: parseInt(app.node.tryGetContext('ebsVolumeSize') ?? '20'),
4747
dedicatedMasterEnabled: app.node.tryGetContext('dedicatedMaster') === 'true',
4848
multiAzEnabled: app.node.tryGetContext('multiAz') === 'true',

0 commit comments

Comments
 (0)