0.0
No commit activity in last 3 years
No release in over 3 years
Environment variables in the node file
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.7
~> 10.0

Runtime

>= 1.1.1
 Project Readme

Itamae::NodeEnv

Gem Version

itamae-node_env gem is an Itamae plugin. Using itamae-node_env, you can use environment variables in node attributes.

Installation

Add this line to your application's Gemfile:

gem 'itamae-node_env'

And then execute:

$ bundle

Or install it yourself as:

$ gem install itamae-node_env

Usage

recipe.rb:

file '/home/someone/.ssh/id_rsa' do
  content node["secret_key"]
  mode "0600"
  owner "someone"
  group "someone"
end

node.json:

{"secret_key": "env[IR_SECRET_KEY]"}

Execute Itamae with itamae-env command:

export IR_SECRET_KEY="$(cat ./id_rsa_for_someone)"
bundle exec itamae-env ssh -h target_host -j node.json recipe.rb

With dotenv

Add this line to Gemfile:

gem "dotenv"

Make .env file:

IR_PASSWORD="password"

And execute itamae-env command.

Contributing

  1. Fork it ( https://github.com/nownabe/itamae-node_env/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request