Skip to content

Commit

Permalink
added git actions code
Browse files Browse the repository at this point in the history
  • Loading branch information
KevJimenez committed Jan 29, 2024
1 parent 66e093d commit 9390d9e
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: terraform and ansible automation

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Terraform
uses: hashicorp/setup-terraform@v1

- name: Terraform Init
run: terraform init

- name: Terraform Validate
run: terraform validate

- name: Terraform Apply
run: terraform apply -auto-approve

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install Ansible
run: pip install ansible

- name: Run Ansible Playbook
run: ansible-playbook -i aws_ec2.ini playbook.yml

0 comments on commit 9390d9e

Please sign in to comment.