├── LICENSE ├── README.md ├── attributes └── default.rb ├── definitions └── custom_env_template.rb ├── metadata.rb ├── recipes ├── configure.rb ├── restart_command.rb └── write_config.rb └── templates └── default └── application.yml.erb /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyAghion/opsworks_custom_env/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyAghion/opsworks_custom_env/HEAD/README.md -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- 1 | default[:custom_env] = {} 2 | -------------------------------------------------------------------------------- /definitions/custom_env_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyAghion/opsworks_custom_env/HEAD/definitions/custom_env_template.rb -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyAghion/opsworks_custom_env/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/configure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyAghion/opsworks_custom_env/HEAD/recipes/configure.rb -------------------------------------------------------------------------------- /recipes/restart_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyAghion/opsworks_custom_env/HEAD/recipes/restart_command.rb -------------------------------------------------------------------------------- /recipes/write_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyAghion/opsworks_custom_env/HEAD/recipes/write_config.rb -------------------------------------------------------------------------------- /templates/default/application.yml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyAghion/opsworks_custom_env/HEAD/templates/default/application.yml.erb --------------------------------------------------------------------------------