Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
/ chef-git_ssh_wrapper Public archive

Generate a key and wrapper for the deploy resource's ssh_wrapper attribute

License

Notifications You must be signed in to change notification settings

tstat/chef-git_ssh_wrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Description

A nice LWRP to create a git wrapper and ssh_key file for use with the deploy resources ssh_wrapper attribute.

Requirements

  • You must specify git_ssh_wrapper as a dependency in your metadata.rb file.
  • You must have git installed

Attributes

  • name: The name attribute, to prepended to the ssh key and the wrapper
  • owner: to specify the owner of the generated files
  • group: to specify the group of the generated files
  • ssh_key_dir: the directory that the ssh key will be placed in, default => ~/.ssh/
  • ssh_wrapper_dir: the directory that the wrapper will be placed in, default => ~/.ssh/wrappers/
  • ssh_key_data: the private ssh key

Usage

# Generate the wrapper and private key file
git_ssh_wrapper "my_app" do
  owner 'my_user'
  group 'my_group'
  ssh_key_data data_bag['deploy_key']
end

# A deploy script example referencing the generated shell file
deploy "my_app" do
  repo "git@github.com/my_user/my_app.git"
  user "my_user"
  deploy_to "/var/www/my_app.com"
  action :deploy
  ssh_wrapper "/home/my_user/.ssh/wrappers/my_app_deploy_wrapper.sh"
end

The generated shell file that you must reference in your deploy block is deploy_wrapper.sh prepended by whatever you pass into the name attribute.

About

Generate a key and wrapper for the deploy resource's ssh_wrapper attribute

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages