Skip to content

Instantly share code, notes, and snippets.

@JJClements
Created November 15, 2017 10:37
Show Gist options
  • Save JJClements/fdef6042f34de146766a6e8d832ac8b3 to your computer and use it in GitHub Desktop.
Save JJClements/fdef6042f34de146766a6e8d832ac8b3 to your computer and use it in GitHub Desktop.
Chef user community cookbook example https://supermarket.chef.io/cookbooks/user
user_account 'clemlar' do
action :create
username 'clemlar'
password '*'
comment 'Platform Engineer, clemlar@domain.com'
uid 2000
gid 2000
create_group false
ssh_keygen false
ssh_keys [
'ssh-rsa XXXXXXXXXXXX'
]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment