Skip to content

Instantly share code, notes, and snippets.

@jtarchie
Created October 14, 2020 12:52
Show Gist options
  • Save jtarchie/fc890900ef080243daf35c4c672a8f63 to your computer and use it in GitHub Desktop.
Save jtarchie/fc890900ef080243daf35c4c672a8f63 to your computer and use it in GitHub Desktop.
final_name: ((first_name))
first_name: ((second_name))
value_that_you_cannot_access: Bob
second_name: ((value_that_you_cannot_access))
@jtarchie
Copy link
Author

When running the following command,

$ om interpolate -c config.yml -l first.yml -l second.yml 
final_name: ((value_that_you_cannot_access))

This is the output.

I was expecting the final_name to have the correct value.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment