AWS Elastic Beanstalk:如何在ebextensions中使用环境变量?

时间:2017-03-01 15:30:43

标签: amazon-web-services environment-variables elastic-beanstalk ebextensions

我们正在尝试在s3中存储特定于环境的应用程序配置文件。 这些文件存储在不同的子目录中,这些子目录以环境命名,并且还将环境作为文件名的一部分。

例子是

dev/application-dev.properties
stg/application-stg.properties
prd/application-prd.properties

Elastic Beanstalk环境名为 dev,stg,prd ,另外我还有一个名为ENVIRONMENT的Elastic Beanstalk中定义的环境变量,可以是 dev,stg或prd

我现在的问题是,在.ebextensions中从配置文件下载配置文件时,如何引用环境名称或ENVIRONMENT变量?

我尝试在.ebextensions / myapp.config中使用{"Ref": "AWSEBEnvironmentName" }引用,但在部署时遇到语法错误。

.ebextensions / myapp.config的内容是:

files:
  /config/application-`{"Ref": "AWSEBEnvironmentName" }`.properties:
    mode: "000666"
    owner: webapp
    group: webapp
    source: https://s3.amazonaws.com/com.mycompany.mybucket/`{"Ref": "AWSEBEnvironmentName" }`/application-`{"Ref": "AWSEBEnvironmentName" }`.properties 
    authentication: S3Access

Resources:
  AWSEBAutoScalingGroup:
    Metadata:
      AWS::CloudFormation::Authentication:
        S3Access:
          type: S3
          roleName: aws-elasticbeanstalk-ec2-role
          buckets: com.mycompany.api.config

我得到的错误是:

The configuration file .ebextensions/myapp.config in application version
manualtest-18 contains invalid YAML or JSON. YAML exception: Invalid Yaml: 
mapping values are not allowed here in "<reader>", line 6, column 85: 
... .config/stg/application-`{"Ref": "AWSEBEnvironmentName" }`.prop ... ^ , 
JSON exception: Invalid JSON: Unexpected character (f) at position 0.. 
Update the configuration file.

在AWS Elastic Beanstalk中.ebextensions配置文件中引用环境变量的正确方法是什么?

3 个答案:

答案 0 :(得分:6)

我努力让这个工作,直到我发现Sub函数似乎在ebextensions中不可用:http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/ebextensions-functions.html

这意味着您需要回退到Fn::JoinRef,至少在ebextensions中引入对Sub的支持之前。似乎files属性需要一个固定的路径(我在这个上下文中不能使用Fn::Join)。

我对此的整体解决方案如下:

Resources:
  AWSEBAutoScalingGroup:
    Metadata:
      AWS::CloudFormation::Authentication:
        S3Auth:
          type: S3
          buckets: arn:aws:s3:::elasticbeanstalk-xxx
          roleName: aws-elasticbeanstalk-ec2-role

files:
  "/tmp/application.properties" :
    mode: "000644"
    owner: root
    group: root
    source: { "Fn::Join" : ["", ["https://s3-xxx.amazonaws.com/elasticbeanstalk-xxx/path/to/application-", { "Ref" : "AWSEBEnvironmentName" }, ".properties" ]]}
    authentication: S3Auth

container_commands:
  01-apply-configuration:
    command: mkdir -p config && mv /tmp/application.properties config

这将在部署的应用程序实例旁边的application.properties目录中生成config文件(没有环境名称限定符)。

如果要使用此方法将环境名称作为文件名的一部分,则需要调整移动文件的命令以使用另一个Fn::Join表达式来控制文件名。

答案 1 :(得分:4)

您的.ebextensions配置文件几乎正确无误。用环境变量或AWS资源名称替换文件名不会起作用,就像在Mark的回答中重命名在container_commands部分中创建的文件一样。

尝试使用Ref访问AWS资源名称的source选项值是正确的,只需要用单引号'包围,如下所示:

files:
  /config/application.properties:
    mode: "000666"
    owner: webapp
    group: webapp
    source: 'https://s3.amazonaws.com/com.mycompany.mybucket/`{"Ref": "AWSEBEnvironmentName" }`/application-`{"Ref": "AWSEBEnvironmentName" }`.properties'
   authentication: S3Access

要访问环境变量,请使用Fn::GetOptionSetting。环境变量位于aws:elasticbeanstalk:application:environment namespace

以下示例访问ENVIRONMENT的{​​{1}}选项中的环境变量source

files

答案 2 :(得分:1)

你几乎就在那里.ebextensions正在使用YAML格式,而你试图使用JSON。使用Ref: AWSEBEnvironmentName。 此外,您可以利用Sub功能来避免讨厌Join

!Sub "/config/application-${AWSEBEnvironmentName}.properties"