solaris_care_connect_360_threat_model.md #24
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: AWS Automation Project 1 | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy-and-scan: | |
name: Deploy WordPress on EC2 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
# Terraform setup | |
- name: Set up Terraform | |
uses: hashicorp/setup-terraform@v1 | |
with: | |
terraform_version: 1.0.0 | |
# AWS credentials setup | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: eu-west-2 | |
# Initialize Terraform | |
- name: Initialize Terraform | |
run: terraform init | |
# Validate Terraform | |
- name: Validate Terraform | |
run: terraform validate | |
# Deploy Terraform | |
- name: Deploy Terraform | |
run: terraform apply -auto-approve |