Hi All,
If I have the following setup:
Cookbook CB ------->Recipe A --------------> ENV['foo']='bar' --------------> Include recipe C ------->Recipe B --------------> Bunch of resources ------->Recipe C --------------> Bunch of resources
Assume that the run_list contains A, B (but not C explicitly, although C is invoked via A using the include recipe statement within A)
Questions:
- Will the environment variable foo (defined in A) be available for resources within recipe C, i.e. when recipe C runs as part of A?
- Will the environment variable foo (defined in A) be available for resources defined in recipe B?
Thank you
Aravind