Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update production environment name #356

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
id: set-env-production
if: endsWith(github.ref, 'heads/master') || contains(github.ref, 'tags/v')
run: |
echo "IMAGE_TAG_PREFIX=production-v0-23-5" >> $GITHUB_ENV
echo "EB_ENVIRONMENT_NAME=production-v0-23-5" >> $GITHUB_ENV
echo "IMAGE_TAG_PREFIX=production-v0-24-3" >> $GITHUB_ENV
echo "EB_ENVIRONMENT_NAME=production-v0-24-3" >> $GITHUB_ENV

- name: Output App Env
id: output-app-env
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ option_settings:
AWS_ACCESS_KEY_ID: "{{resolve:ssm:/decidim-cfj/production/AWS_ACCESS_KEY_ID:1}}"
AWS_SECRET_ACCESS_KEY: "{{resolve:ssm:/decidim-cfj/production/AWS_SECRET_ACCESS_KEY:1}}"
AWS_CLOUD_FRONT_END_POINT: "{{resolve:ssm:/decidim-cfj/production/AWS_CLOUD_FRONT_END_POINT:1}}"
REDIS_URL: "{{resolve:ssm:/decidim-cfj/production/REDIS_URL:2}}"
REDIS_URL: "{{resolve:ssm:/decidim-cfj/production/REDIS_URL:3}}"
RDS_DB_NAME: "{{resolve:ssm:/decidim-cfj/production/RDS_DB_NAME:1}}"
RDS_HOSTNAME: "{{resolve:ssm:/decidim-cfj/production/RDS_HOSTNAME:2}}"
RDS_HOSTNAME: "{{resolve:ssm:/decidim-cfj/production/RDS_HOSTNAME:3}}"
RDS_USERNAME: "{{resolve:ssm:/decidim-cfj/production/RDS_USERNAME:1}}"
RDS_PASSWORD: "{{resolve:ssm:/decidim-cfj/production/RDS_PASSWORD:1}}"
SECRET_KEY_BASE: "{{resolve:ssm:/decidim-cfj/production/SECRET_KEY_BASE:1}}"
Expand All @@ -14,6 +14,6 @@ option_settings:
SMTP_USERNAME: "{{resolve:ssm:/decidim-cfj/production/SMTP_USERNAME:2}}"
SMTP_PASSWORD: "{{resolve:ssm:/decidim-cfj/production/SMTP_PASSWORD:2}}"
SMTP_DOMAIN: diycities.jp
AWS_BUCKET_NAME: cfj-decidim-v0235
AWS_BUCKET_NAME: cfj-decidim-v0243
RAILS_SKIP_MIGRATIONS: false
DECIDIM_COMMENTS_LIMIT: 30
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ option_settings:
MinSize: 3
MaxSize: 5
"aws:ec2:instances":
InstanceTypes: t2.medium
InstanceTypes: t2.large
"aws:elasticbeanstalk:cloudwatch:logs":
StreamLogs: true
DeleteOnTerminate: false
Expand Down