Skip to content

Commit

Permalink
build: create toggle maintenance mode
Browse files Browse the repository at this point in the history
  • Loading branch information
yilanboy committed Jul 11, 2024
1 parent 1855ef6 commit 7a13f61
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/lambda-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::154471991214:role/github_action
aws-region: ap-northeast-1
aws-region: us-west-2

- name: Copy files to the s3 with the aws cli
run: |
Expand Down
55 changes: 55 additions & 0 deletions .github/workflows/maintenance-mode-toggle.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Toggle Maintenance Mode in Lambda

on:
workflow_dispatch:
inputs:
name:
description: Who to greet
default: Allen

permissions:
id-token: write
contents: read

jobs:
toggle-maintenance-mode:
name: Toggle maintenance mode
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Configure aws credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::154471991214:role/github_action
aws-region: us-west-2

- name: Toggle maintenance mode
run: |
MAINTENANCE_MODE=$(aws lambda get-function-configuration \
--function-name docfunc-production-web \
--region us-west-2 | jq -r '.Environment.Variables.MAINTENANCE_MODE')
ENVIRONMENT=$(aws lambda get-function-configuration \
--function-name docfunc-production-web \
--region us-west-2 | jq -r '.Environment')
if [[ ${MAINTENANCE_MODE} == 0 ]]; then
NEW_ENVIRONMENT=$(echo $ENVIRONMENT | jq -r '.Variables.MAINTENANCE_MODE="1"|tostring')
STATUS="ENABLE"
elif [[ ${MAINTENANCE_MODE} == 1 ]]; then
NEW_ENVIRONMENT=$(echo $ENVIRONMENT | jq -r '.Variables.MAINTENANCE_MODE="0"|tostring')
STATUS="DISABLE"
else
echo 'MAINTENANCE_MODE must be 1 or 0'
exit 1
fi
# https://github.com/aws/aws-cli/issues/2638
aws lambda update-function-configuration \
--function-name docfunc-production-web \
--region us-west-2 \
--environment $NEW_ENVIRONMENT | jq -r '.Environment.Variables.MAINTENANCE_MODE'
echo "Maintenance mode is $STATUS"

0 comments on commit 7a13f61

Please sign in to comment.