I have a config file in my project
parameters:
environment: development
redis.host: 127.0.0.1
database.credentials:
host: localhost
prefix: ${bamboo.agentId}
mainDatabaseSuffix: main
mainDatabaseUsername: ${bamboo.agentId}_main
password: password
database.host: localhost
As part of the build I copy this file, and would like to overwrite the values with bamboo parameters. How do I go about this?
I have tried
sed 's/${bamboo.agentId}/${bamboo.agentId}/g' src/Resources/config/parameters.yml
also
sed 's/${bamboo.agentId}/$bamboo_agentId/g' src/Resources/config/parameters.yml
Also replacing the variable in the file with some placeholder
sed 's/BAMBOO_AGENTID/${bamboo.agentId}/g' src/Resources/config/parameters.yml
Also heaps of other methods to escape etc but no success. Is there a way to replace all the variables in a file using bamboo rather than sed? If not, any tips on using sed for this?
Thanks in advance
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.