LoginSignup
1
1

More than 5 years have passed since last update.

fluctで任意のregionにデプロイする方法

Posted at

fluctでs3のオブジェクト触りたい場合にデフォルトだとus-east-1にデプロイされちゃうので
なんとかならないかな、と思って検索したら誰も言及されてなかったのですが
ソース見たらすぐでした

これでオッケー、node.js初めて触った感

package.js
{
  "name": "yourappname",
  "private": true,
  "fluct": {
    "accountId": "WRITE_YOUR_AWS_ACCOUNT_ID",
    "region": "ap-northeast-1",
    "restapiId": null,
    "roleName": "WRITE_IAM_ROLE_NAME"
  }
}
1
1
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
1
1