-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added github actions, trivy, tflint, and alb certificate
- Loading branch information
1 parent
06206c8
commit 3b9caa5
Showing
8 changed files
with
292 additions
and
18 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: Terraform Apply | ||
run-name: Terraform apply ${{ inputs.workspace }} by @${{ github.actor }} | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
workspace: | ||
description: 'The workspace to terraform against' | ||
required: true | ||
type: choice | ||
options: | ||
- " " | ||
- prod | ||
|
||
concurrency: | ||
group: ${{ github.event.inputs.workspace }}-terraform | ||
cancel-in-progress: false | ||
|
||
permissions: | ||
id-token: write | ||
contents: read | ||
|
||
env: | ||
workspace: ${{ github.event.inputs.workspace }} | ||
terraform_action: apply | ||
|
||
jobs: | ||
terraform: | ||
name: Run Terraform | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
shell: bash | ||
# this may need to be updated if you change the directory you are working with | ||
# ./terraform/implementation/dev || ./terraform/implementation/prod for example | ||
# this practice is recommended to keep the terraform code organized while reducing the risk of conflicts | ||
working-directory: ./terraform/implementation/ecs | ||
steps: | ||
- name: Check Out Changes | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Terraform | ||
uses: hashicorp/setup-terraform@v3 | ||
with: | ||
terraform_version: "1.9.8" | ||
|
||
- name: configure aws credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
role-to-assume: ${{ secrets.AWS_ROLE_ARN }} | ||
role-session-name: githubDeploymentWorkflow | ||
aws-region: ${{ vars.AWS_REGION }} | ||
|
||
- name: Terraform | ||
env: | ||
ACTION: ${{ env.terraform_action }} | ||
BUCKET: ${{ secrets.TFSTATE_BUCKET }} | ||
DYNAMODB_TABLE: ${{ secrets.TFSTATE_DYNAMODB_TABLE }} | ||
OWNER: ${{ vars.OWNER }} | ||
PROJECT: ${{ vars.PROJECT }} | ||
REGION: ${{ vars.AWS_REGION }} | ||
WORKSPACE: ${{ env.workspace }} | ||
UMLS_API_KEY: ${{ secrets.UMLS_API_KEY }} | ||
ERSD_API_KEY: ${{ secrets.ERSD_API_KEY}} | ||
TLS_CERT: ${{ secrets.TLS_CERT}} | ||
TLS_KEY: ${{ secrets.TLS_KEY}} | ||
shell: bash | ||
run: | | ||
echo "owner = \"$OWNER\"" >> $WORKSPACE.tfvars | ||
echo "project = \"$PROJECT\"" >> $WORKSPACE.tfvars | ||
echo "region = \"$REGION\"" >> $WORKSPACE.tfvars | ||
terraform init \ | ||
-var-file="$WORKSPACE.tfvars" \ | ||
-backend-config "bucket=$BUCKET" \ | ||
-backend-config "dynamodb_table=$DYNAMODB_TABLE" \ | ||
-backend-config "region=$REGION" \ | ||
|| (echo "terraform init failed, exiting..." && exit 1) | ||
terraform workspace select "$WORKSPACE" | ||
terraform apply -auto-approve \ | ||
-var-file="$WORKSPACE.tfvars" \ | ||
-var "umls_api_key=${UMLS_API_KEY}" \ | ||
-var "ersd_api_key=${ERSD_API_KEY}" \ | ||
-var "qc_tls_key=${TLS_KEY}" \ | ||
-var "qc_tls_cert"=${TLS_CERT}" \ | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
|
||
|
||
name: Terraform Plan | ||
run-name: Terraform plan ${{ inputs.workspace }} by @${{ github.actor }} | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
workspace: | ||
description: 'The workspace to terraform against' | ||
required: true | ||
type: choice | ||
options: | ||
- " " | ||
- prod | ||
|
||
concurrency: | ||
group: ${{ github.event.inputs.workspace }}-terraform | ||
cancel-in-progress: false | ||
|
||
permissions: | ||
id-token: write | ||
contents: read | ||
|
||
env: | ||
workspace: ${{ github.event.inputs.workspace }} | ||
terraform_action: plan | ||
|
||
jobs: | ||
terraform: | ||
name: Run Terraform | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
shell: bash | ||
# this may need to be updated if you change the directory you are working with | ||
# ./terraform/implementation/dev || ./terraform/implementation/prod for example | ||
# this practice is recommended to keep the terraform code organized while reducing the risk of conflicts | ||
working-directory: ./terraform/implementation/ecs | ||
steps: | ||
- name: Check Out Changes | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Terraform | ||
uses: hashicorp/setup-terraform@v3 | ||
with: | ||
terraform_version: "1.9.8" | ||
|
||
- name: configure aws credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
role-to-assume: ${{ secrets.AWS_ROLE_ARN }} | ||
role-session-name: githubDeploymentWorkflow | ||
aws-region: ${{ vars.region }} | ||
|
||
- name: Terraform | ||
env: | ||
ACTION: ${{ env.terraform_action }} | ||
BUCKET: ${{ secrets.TFSTATE_BUCKET }} | ||
DYNAMODB_TABLE: ${{ secrets.TFSTATE_DYNAMODB_TABLE }} | ||
OWNER: ${{ vars.OWNER }} | ||
PROJECT: ${{ vars.PROJECT }} | ||
REGION: ${{ vars.AWS_REGION }} | ||
WORKSPACE: ${{ env.workspace }} | ||
UMLS_API_KEY: ${{ secrets.UMLS_API_KEY }} | ||
ERSD_API_KEY: ${{ secrets.ERSD_API_KEY}} | ||
TLS_CERT : ${{ secrets.TLS_CERT}} | ||
TLS_KEY : ${{ secrets.TLS_KEY}} | ||
shell: bash | ||
run: | | ||
echo "owner = \"$OWNER\"" >> $WORKSPACE.tfvars | ||
echo "project = \"$PROJECT\"" >> $WORKSPACE.tfvars | ||
echo "region = \"$REGION\"" >> $WORKSPACE.tfvars | ||
terraform init \ | ||
-var-file="$WORKSPACE.tfvars" \ | ||
-backend-config "bucket=$BUCKET" \ | ||
-backend-config "dynamodb_table=$DYNAMODB_TABLE" \ | ||
-backend-config "region=$REGION" \ | ||
|| (echo "terraform init failed, exiting..." && exit 1) | ||
terraform workspace select "$WORKSPACE" | ||
terraform apply -auto-approve \ | ||
-var-file="$WORKSPACE.tfvars" \ | ||
-var "umls_api_key=${UMLS_API_KEY}" \ | ||
-var "ersd_api_key=${ERSD_API_KEY}" \ | ||
-var "qc_tls_key=${TLS_KEY}" \ | ||
-var "qc_tls_cert"=${TLS_CERT}" \ | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Terraform Linting | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
tflint: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
dirs: [terraform/modules/oidc, terraform/modules/tfstate, terraform/implementation/setup, terraform/implementation/ecs] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
name: Checkout source code | ||
|
||
- uses: actions/cache@v4 | ||
name: Cache plugin dir | ||
with: | ||
path: ~/.tflint.d/plugins | ||
key: ${{ matrix.dirs }}-tflint-${{ hashFiles('.tflint.hcl') }} | ||
|
||
- uses: terraform-linters/setup-tflint@v4 | ||
name: Setup TFLint | ||
with: | ||
tflint_version: v0.52.0 | ||
|
||
- name: Show version | ||
run: tflint --version | ||
|
||
- name: Init TFLint | ||
run: tflint --init | ||
# If rate limiting becomes an issue, setup a GitHub token and enable it as an environment variable | ||
# env: | ||
# https://github.com/terraform-linters/tflint/blob/master/docs/user-guide/plugins.md#avoiding-rate-limiting | ||
# GITHUB_TOKEN: ${{ github.token }} | ||
|
||
- name: Run TFLint | ||
working-directory: ${{ github.workspace }}/${{matrix.dirs}} | ||
run: tflint -f compact |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Trivy Security Scan | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
trivy: | ||
name: trivy | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
|
||
- name: Run Trivy vulnerability scanner | ||
uses: aquasecurity/[email protected] | ||
with: | ||
scan-type: 'fs' | ||
scan-ref: 'terraform/modules/' | ||
scanners: 'vuln,secret,config' | ||
ignore-unfixed: false | ||
exit-code: '1' | ||
format: 'table' | ||
severity: 'CRITICAL,HIGH' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,4 +85,6 @@ build/ | |
.env | ||
.local.env | ||
|
||
tmp_remote_image_* | ||
tmp_remote_image_* | ||
|
||
.terraform |
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
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
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