Last active
November 27, 2018 23:02
-
-
Save adrianhall/47f908cf5f5a2bc9576a5804f1132323 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ElasticSearchDomain: | |
Type: AWS::Elasticsearch::Domain | |
Properties: | |
DomainName: ${self:custom.es_domain} | |
ElasticsearchVersion: "6.2" | |
ElasticsearchClusterConfig: | |
ZoneAwarenessEnabled: false | |
InstanceCount: ${self:custom.es_instanceCount} | |
InstanceType: ${self:custom.es_instanceType} | |
EBSOptions: | |
EBSEnabled: true | |
VolumeType: "gp2" | |
VolumeSize: ${self:custom.es_ebsVolumeGB} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment