Environment specific ebextensions commands
问题 I have a spring-boot application for which I need to specify graphite server and port (to send metrics). For that to work, I have to install and configure statsd . I do that using the ebextensions file. commands: 01_nodejs_install: command: sudo yum -y install nodejs npm --enablerepo=epel ignoreErrors: true 02_mkdir_statsd: command: mkdir /home/ec2-user/statsd ignoreErrors: true 03_fetch_statsd: command: git clone https://github.com/etsy/statsd.git /home/ec2-user/statsd ignoreErrors: true 04