Advertisement
Guest User

Untitled

a guest
Dec 7th, 2015
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.77 KB | None | 0 0
  1. cluster:
  2.     name: ${CLUSTER_NAME}
  3.  
  4. plugin.mandatory: cloud-aws
  5.  
  6. path:
  7.   logs: /var/log
  8.   data: /var/esdata
  9.  
  10. action.disable_delete_all_indices: true
  11.  
  12. cloud.aws:
  13.   access_key: ${AWS_KEY_ID}
  14.   secret_key: ${AWS_KEY}
  15.   region: ${AWS_REGION}
  16.  
  17. discovery:
  18.   type: ec2
  19.   ec2:
  20.     ping_timeout: 30s
  21.     tag.Name: ${EC2_TAG_NAME}
  22.     host_type: private_dns
  23.  
  24. discovery.zen:
  25.   minimum_master_nodes: ${MASTER_NODES}
  26.   ping_timeout: 30s
  27.   ping:
  28.     multicast.enabled: false
  29.     unicast.hosts: []
  30.  
  31. script.engine.groovy.inline.update: on
  32. script.engine.groovy.inline.aggs: on
  33. script.engine.groovy.inline.search: on
  34.  
  35. network:
  36.     host: _non_loopback_
  37.  
  38. http:
  39.     host: 0.0.0.0
  40.     compression: true
  41.  
  42.     cors:
  43.         enabled: true
  44.         allow-origin: '*'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement