diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/cloud-config-chef.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/examples/cloud-config-chef.txt b/doc/examples/cloud-config-chef.txt index 227bd3a3..a1dda4f1 100644 --- a/doc/examples/cloud-config-chef.txt +++ b/doc/examples/cloud-config-chef.txt @@ -9,16 +9,19 @@ apt_mirror: http://apt.opscode.com/ chef: - # If you want to install from rubygems: + + # Valid values are 'gems' and 'packages' install_type: "gems" # Chef settings server_url: "https://chef.yourorg.com:4000" # Node Name - node_name: "Your Node Name" + # Defaults to the instance-id if not present + node_name: "your-node-name" # Environment + # Defaults to '_default' if not present environment: "production" # Default validation name is chef-validator |