Skip to content

Commit

Permalink
removing port from default egress url
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Early authored and Justin Early committed Mar 28, 2016
1 parent 083c3e5 commit b04996a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ al_agents CHANGELOG

This file is used to list changes made in each version of the al_agents cookbook.

1.1.1
------
- Justin Early - Removing port from egress url

1.1.0
------
- Justin Early - Deprecating --inst-type role from provisioning options
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Attributes

* `['al_agents']['agent']['registration_key']` - your required registration key. String defaults to `your_registration_key_here`
* `['al_agents']['agent']['for_imaging']` - The `for_imaging` attribute determines if the install process will continue or stop prior to provisioning. If the `for_imaging` attribute is set to `true` then the install process perform an install only and stop before provisioning. This allows for instance snapshots to be saved and started for later use. With this attribute set to `false` then the provisioning process is performed during setup. Boolean defaults to `false`
* `['al_agents']['agent']['egress_url']` - By default all traffic is sent to https://vaporator.alertlogic.com:443. This attribute is useful if you have a machine that is responsible for outbound traffic (NAT box). If you specify your own URL ensure that it is a properly formatted URI. String defaults to `https://vaporator.alertlogic.com:443`
* `['al_agents']['agent']['egress_url']` - By default all traffic is sent to https://vaporator.alertlogic.com. This attribute is useful if you have a machine that is responsible for outbound traffic (NAT box). If you specify your own URL ensure that it is a properly formatted URI. String defaults to `https://vaporator.alertlogic.com`
* `['al_agents']['agent']['proxy_url']` - By default al-agent does not require the use of a proxy. This attribute is useful if you want to avoid a single point of egress. When a proxy is used, both `['al_agents']['agent']['egress_url']` and `['al_agents']['agent']['proxy_url']` values are required. If you specify a proxy URL ensure that it is a properly formatted URI. String defaults to `nil`

Usage
Expand Down
2 changes: 1 addition & 1 deletion attributes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# registration key is a must
default['al_agents']['agent']['registration_key'] = 'your_registration_key_here'

default['al_agents']['agent']['egress_url'] = 'https://vaporator.alertlogic.com:443'
default['al_agents']['agent']['egress_url'] = 'https://vaporator.alertlogic.com'

default['al_agents']['agent']['proxy_url'] = nil

Expand Down
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
license 'All rights reserved'
description 'Installs/Configures the Alert Logic Agent'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '1.1.0'
version '1.1.1'

depends 'selinux_policy'
depends 'rsyslog', '= 2.2.0'
Expand Down

0 comments on commit b04996a

Please sign in to comment.