Skip to content

Instantly share code, notes, and snippets.

@adrianhall
Last active November 27, 2018 23:02
Show Gist options
  • Save adrianhall/47f908cf5f5a2bc9576a5804f1132323 to your computer and use it in GitHub Desktop.
Save adrianhall/47f908cf5f5a2bc9576a5804f1132323 to your computer and use it in GitHub Desktop.
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