How to read environment variable in a chef's recipe
1 answer
You can use Ruby's own way to manage environment variables ( ruby-doc link ). Thus, you can refer to an environment variable from your recipe directly using ENV ['MY_VARIABLE'].
+3
source to share