Created
October 14, 2020 12:52
-
-
Save jtarchie/fc890900ef080243daf35c4c672a8f63 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| final_name: ((first_name)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| first_name: ((second_name)) | |
| value_that_you_cannot_access: Bob |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| second_name: ((value_that_you_cannot_access)) |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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_nameto have the correct value.