将环境变量添加到 .ebextensions 中的文件

将环境变量添加到 .ebextensions 中的文件

我从新遗物文档。我正在寻找一种方法来替换YourNewRelicLicenseNameOfYourServer使用在 ec2 实例上设置的环境变量。

packages: 
  yum: 
    newrelic-sysmond: [] 
  rpm: 
    newrelic: http://yum.newrelic.com/pub/newrelic/el5/x86_64/newrelic-repo-5-3.noarch.rpm 
commands: 
  "01": 
    command: nrsysmond-config --set license_key=YourNewRelicLicense 
  "02": 
    command: echo hostname=NameOfYourServer >> /etc/newrelic/nrsysmond.cfg 
  "03": 
    command: /etc/init.d/newrelic-sysmond start

这可能吗?

答案1

我也遇到了同样的问题。经过一些测试,我找到了 New Relic 提供的更新版本,允许在 elastic beanstalk 中使用应用程序配置中的环境变量。

最终版本如下所示

packages:
  yum:
    newrelic-sysmond: []
  rpm:
    newrelic: http://yum.newrelic.com/pub/newrelic/el5/x86_64/newrelic-repo-5-3.noarch.rpm
container_commands:
  "01":
    command: /usr/sbin/nrsysmond-config --set license_key=${APP_NR_LIC}
  "02":
    command: echo hostname=$HOSTNAME >> /etc/newrelic/nrsysmond.cfg
  "03":
    command: /etc/init.d/newrelic-sysmond start

只需将其替换APP_NR_LIC为您用来设置许可证密钥的任何变量即可。这对我来说很可靠。

谢谢马切伊他的研究这里

答案2

这是一个可以运行的示例脚本,它将获取环境变量并commands与之一起工作,而不是container_commands

packages:
  yum:
    newrelic-sysmond: []
  rpm:
    newrelic: http://yum.newrelic.com/pub/newrelic/el5/x86_64/newrelic-repo-5-3.noarch.rpm
files:
  "/root/env.js":
    mode: "00755"
    owner: root
    group: root
    encoding: plain
    content: |
      #!/usr/bin/env node
      var strings = []
      process.stdin.resume()
      process.stdin.setEncoding('utf8')
      process.stdin.on('data', function(data) {
        var json = JSON.parse(data)
        for (var key in json) {
          var val = json[key]
          strings.push(key + '="' + val + '"')
        }
      })
      process.stdin.on('end', function() {
        var output = strings.join('\n')
        process.stdout.write(output)
      })
commands:
  "05":
    command: ln -sf `ls -td /opt/elasticbeanstalk/node-install/node-* | head -1`/bin/node /bin/node
  "08":
    command: sudo /etc/init.d/newrelic-sysmond stop
  "09":
    command: sudo /opt/elasticbeanstalk/bin/get-config environment | sudo /root/env.js > file
  "10":
    command: source ./file && sudo nrsysmond-config --set ssl=true license_key=$NEW_RELIC_LICENSE_KEY
  "12":
    command: sudo /etc/init.d/newrelic-sysmond start

相关内容