You must be logged in to view saved presets
Configuration template to provision an OpenSearch Domain (formerly Amazon Elasticsearch Domain), with settings such as VPC access, number of master and data nodes, encryption (at-rest and node-to-node), logging settings, and more.
The following OpenSearch/Elasticsearch domain settings can be customized in this template:
AWSTemplateFormatVersion: '2010-09-09'
Description: ''
Resources:
OpenSearchDomain:
Type: 'AWS::OpenSearchService::Domain'
Properties:
DomainName: opensearch-domain
EngineVersion: OpenSearch_1.1
ClusterConfig:
DedicatedMasterEnabled: true
InstanceCount: 3
InstanceType: r6g.large.search
DedicatedMasterCount: 3
DedicatedMasterType: r6g.large.search
ZoneAwarenessEnabled: false
EncryptionAtRestOptions:
Enabled: false
LogPublishingOptions:
SEARCH_SLOW_LOGS:
Enabled: false
ES_APPLICATION_LOGS:
Enabled: false
INDEX_SLOW_LOGS:
Enabled: false
AUDIT_LOGS:
Enabled: false
NodeToNodeEncryptionOptions:
Enabled: false
EBSOptions:
EBSEnabled: true
VolumeSize: 50
Parameters: {}
Metadata: {}
Conditions: {}