Skip to content

Commit

Permalink
Merge pull request #1 from bethdevopsbunny/circleci-project-setup
Browse files Browse the repository at this point in the history
Implement Circle Ci for linting and security.
  • Loading branch information
bethdevopsbunny committed Jul 26, 2023
2 parents 6426aa9 + 30783e0 commit b6762d4
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: 2.1
jobs:
tfsec:
docker:
- image: aquasec/tfsec-alpine:latest
steps:
- checkout
- run:
name: Terraform security analysis
command: tfsec

workflows:
develop:
jobs:
- tfsec

0 comments on commit b6762d4

Please sign in to comment.