diff --git a/.github/workflows/gh-token.yaml b/.github/workflows/gh-token.yaml index d88708d..96f7cdf 100644 --- a/.github/workflows/gh-token.yaml +++ b/.github/workflows/gh-token.yaml @@ -10,7 +10,7 @@ jobs: name: Refresh GitHub Token uses: CSVD/centralized-actions/.github/workflows/upload-github-token.yml@main with: - aws_region: 'us-east-1' + aws_region: 'us-gov-west-1' secret_name: '/dev/eks_automation_github_token' # This matches the SECRET_NAME in app.py github_app_id: ${{ vars.GH_APP_ID }} github_app_installation_id: ${{ vars.GH_APP_INSTALLATION_ID }} diff --git a/eks_automation/app.py b/eks_automation/app.py index dcd50ff..8bd6b50 100644 --- a/eks_automation/app.py +++ b/eks_automation/app.py @@ -137,7 +137,7 @@ def operate_github(new_repo_name, eks_settings, output_hcl): # Commit and push the changes. cloned_repo.index.add(output_hcl) - commit_message = "Add the EKS paramter file by the Lambda function" + commit_message = "Add the EKS parameter file by the Lambda function" cloned_repo.index.commit(commit_message) cloned_repo.git.push("--set-upstream", origin.name, "main", force=True)