Created
January 10, 2013 20:25
-
-
Save ocxo/4505471 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
current_dir = File.dirname(__FILE__) | |
log_level :info | |
log_location STDOUT | |
node_name "fromonesrc" | |
client_key "#{ENV['HOME']}/.chef/fromonesrc.pem" | |
validation_client_name "articulate-validator" | |
validation_key "#{ENV['HOME']}/.chef/articulate-validator.pem" | |
chef_server_url "https://api.opscode.com/organizations/articulate" | |
cache_type 'BasicFile' | |
cache_options( :path => "#{ENV['HOME']}/.chef/checksums" ) | |
cookbook_path ["#{current_dir}/../cookbooks", "#{ENV['HOME']}/src"] | |
encrypted_data_bag_secret "#{ENV['HOME']}/.chef/encrypted_data_bag_secret" | |
# Used with knife-ec2 | |
knife[:aws_access_key_id] = "#{ENV['AWS_ACCESS_KEY_ID']}" | |
knife[:aws_secret_access_key] = "#{ENV['AWS_SECRET_ACCESS_KEY']}" | |
knife[:aws_ssh_key_id] = "#{ENV['AWS_SSH_KEY_ID']}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment