2019-01-01から1年間の記事一覧

AppStore用意するスクリーンショットサイズ

以下を参照 App Store アイコン、App プレビューとスクリーンショットの概要 スクリーンショットの仕様

Cathageのインストールが進まない時の対処法

$ rm -rf /Library/Caches/org.carthage.CarthageKit $ carthage update --platform ios --verbose --new-resolver

AWS IAM Role権限のポリシー

環境によってはIAMのフル権限がもらえないので、ロール周りの設定ができるポリシーを作成してアタッチしてもらう。 Resourceは適宜変更。 { "Version": "2012-10-17", "Statement": [ { "Sid": "VisualEditor0", "Effect": "Allow", "Action": [ "iam:Create…

Terraform ElasticBeanstalkのアプリケーション HTTP 4xx ステータスコードを無視する設定

ConfigDocumentにルールを記載したJSONドキュメントを設定する必要がある。 setting { namespace = "aws:elasticbeanstalk:healthreporting:system" name = "SystemType" value = "enhanced" } setting { namespace = "aws:elasticbeanstalk:healthreporting…

Terraform Elastic Beanstalk環境のsolution_stack_name一覧を取得する

Elastic Beanstalkの環境で指定可能なプラットフォーム一覧を取得する。 resource "aws_elastic_beanstalk_environment" "tfenvtest" { name = "tf-test-name" application = "${aws_elastic_beanstalk_application.tftest.name}" solution_stack_name = "64…