diff options
-rw-r--r-- | lib/chef/resource/habitat/habitat_sup.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/chef/resource/habitat/habitat_sup.rb b/lib/chef/resource/habitat/habitat_sup.rb index b1cbe6cbed..6b8fbccf71 100644 --- a/lib/chef/resource/habitat/habitat_sup.rb +++ b/lib/chef/resource/habitat/habitat_sup.rb @@ -49,7 +49,7 @@ class Chef ```ruby habitat_sup 'default' do - bldr_url 'https://bldr.private.net' + bldr_url 'https://bldr.example.com' end ``` @@ -57,13 +57,13 @@ class Chef ```ruby habitat_sup 'default' do - bldr_url 'https://bldr.private.net' + bldr_url 'https://bldr.example.com' habitat_channel 'dev' update_condition 'track-channel' end ``` - **Provide event_stream_* information** + **Provide event stream information** ```ruby habitat_sup 'default' do @@ -71,7 +71,7 @@ class Chef event_stream_application 'myapp' event_stream_environment 'production' event_stream_site 'MySite' - event_stream_url 'automate.private.net:4222' + event_stream_url 'automate.example.com:4222' event_stream_token 'myawesomea2clitoken=' event_stream_cert '/hab/cache/ssl/mycert.crt' end @@ -81,7 +81,7 @@ class Chef ```ruby habitat_sup 'default' do - bldr_url 'https://bldr.private.net' + bldr_url 'https://bldr.example.com' sup_version '1.5.50' launcher_version '13458' service_version '0.6.0' # WINDOWS ONLY @@ -91,7 +91,7 @@ class Chef **Set latest version of packages to retain** habitat_sup 'default' do - bldr_url 'https://bldr.private.net' + bldr_url 'https://bldr.example.com' sup_version '1.5.86' launcher_version '13458' service_version '0.6.0' # WINDOWS ONLY |