File tree Expand file tree Collapse file tree
opensearch/opensearch_ubi/lib Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,13 +32,13 @@ export interface OpenSearchStackProps extends cdk.StackProps {
3232
3333 /**
3434 * Instance type for data nodes.
35- * @default 't3.small .search' (cost-effective for demo)
35+ * @default 't3.medium .search'
3636 */
3737 readonly instanceType ?: string ;
3838
3939 /**
4040 * Number of data nodes.
41- * @default 1 (single node for demo)
41+ * @default 3
4242 */
4343 readonly instanceCount ?: number ;
4444
@@ -109,8 +109,8 @@ export class OpenSearchStack extends cdk.Stack {
109109
110110 const envPrefix = props . envPrefix ?? 'dev' ;
111111 const openSearchVersion = props . openSearchVersion ?? '3.3' ;
112- const instanceType = props . instanceType ?? 't3.small .search' ;
113- const instanceCount = props . instanceCount ?? 1 ;
112+ const instanceType = props . instanceType ?? 't3.medium .search' ;
113+ const instanceCount = props . instanceCount ?? 3 ;
114114 const ebsVolumeSize = props . ebsVolumeSize ?? 20 ;
115115 const masterUserName = props . masterUserName ?? 'admin' ;
116116 const dedicatedMasterEnabled = props . dedicatedMasterEnabled ?? false ;
You can’t perform that action at this time.
0 commit comments