add_ecr #176
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Modify ecr.tf | |
on: | |
repository_dispatch: | |
types: [add_ecr] | |
jobs: | |
add_ecr: | |
env: | |
TF_IN_AUTOMATION: true | |
TF_CLOUD_ORGANIZATION: "xquare" | |
TF_WORKSPACE: "xquare-global" | |
CONFIG_DIRECTORY: "./" | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
RDS_MASTER_PASSWORD: ${{ secrets.RDS_MASTER_PASSWORD }} | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
if: ${{ github.event.client_payload.repository_name }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Add ecr | |
shell: bash | |
run: | | |
location=$(grep -n "# ECR_REPOSITORY_NAME" ecr.tf | cut -d ":" -f 1) | |
if [ -n "$location" ]; then | |
sed -i "${location}s|.*|&\n \"${{ github.event.client_payload.repository_name }}\",|" ecr.tf | |
fi | |
- name: Set up Terraform | |
uses: hashicorp/setup-terraform@v1 | |
with: | |
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }} | |
- name: Terraform init | |
shell: bash | |
run: terraform init | |
- name: Terraform import | |
if: ${{ github.event.client_payload.environment }} == 'prod' || ${{ github.event.client_payload.environment }} == 'stag' | |
shell: bash | |
run: | | |
terraform import -var 'cloudflare_api_token=${{ env.CLOUDFLARE_API_TOKEN }}' \ | |
'module.${{ github.event.client_payload.environment }}_ecr["${{ github.event.client_payload.repository_name }}"].aws_ecr_repository.repo' \ | |
${{ github.event.client_payload.repository_name }} | |
- name: Commit with new ECR | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "🔀 :: ecr repository [${{ github.event.client_payload.repository_name }}] 추가" | |
branch: main | |
file_pattern: 'ecr.tf' | |
push_options: '--force' | |
commit_options: '--no-verify --signoff' | |
repository: . | |
commit_user_name: XQUARE GitOps Bot | |
commit_user_email: [email protected] | |
commit_author: XQUARE GitOps Bot <[email protected]> | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITOPS_DEPLOY_PRODUCTION_TOKEN }} |