This chef cookbook installs the Distelli Agent on a server.
Include distelli_agent
in your run_list
and set your attributes with your Distelli Access Token and Distelli Secret key found in your Distelli Account.
{
"name": "my_node",
"run_list": [
"recipe[distelli_agent]"
],
"default": {
"distelli": {
"agent": {
"access_token": "DISTELLI_ACCESS_TOKEN",
"secret_key": "DISTELLI_SECRET_KEY",
}
},
}
}