-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmetadata.rb
28 lines (24 loc) · 972 Bytes
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name 'raven-proxy'
maintainer 'Raven Tools'
maintainer_email 'phil@raventools.com'
license 'BSD'
description 'Installs/Configures raven-proxy'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '0.1.0'
recipe "raven-proxy::default", "Install nginx and remove default config"
recipe "raven-proxy::elasticsearch", "Configure ElasticSearch proxy"
attribute "raven_proxy",
:display_name => "Raven Proxy",
:type => "hash"
attribute "raven_proxy/elasticsearch/endpoint",
:display_name => "ElasticSearch Endpoint",
:description => "ElasticSearch Endpoint",
:required => "recommended",
:type => "string",
:recipes => ["raven-proxy::elasticsearch"]
attribute "raven_proxy/elasticsearch/port",
:display_name => "Proxy Listen Port",
:description => "Proxy Listen Port",
:required => "recommended",
:type => "string",
:recipes => ["raven-proxy::elasticsearch"]