12
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AWS Lambda で環境変数を実現する

Last updated at Posted at 2016-02-25

alias を使えばそれっぽいことができます。

準備

  • publish パラメータを付けてバージョニングを有効にする
  • development, production などの環境名の alias を作成する

ディレクトリ構造

├── config
│   ├── development.json
│   └── production.json
└── index.js

ハンドラ

function loadConfig(context) {
  var env = 'development';
  if (!!context.invokedFunctionArn) {
    env = context.invokedFunctionArn.split(':').pop();
  }
  return require('./config/' + env + '.json');
}

exports.handler = function(event, context) {
  var config = loadConfig(context);
  context.succeed(config);
};

invokedFunctionArn の末尾に alias が含まれるのでそれを使って設定ファイルをロードする。

alias ごとの環境変数設定オフィシャルで欲しいですね。

追記

標準で環境変数がサポートされたけど alias ごとには設定できないので alias でバージョンを切り替えるなどする場合にはまだ必要ですね…

12
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?