From 56ba79ef8ee7b0ee29da1c9bb250a5247d4b4208 Mon Sep 17 00:00:00 2001 From: "T.J. Corrigan" Date: Tue, 1 Nov 2022 10:57:54 -0500 Subject: [PATCH] README typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 62dade7..7ce963b 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ This is a sample repository that shows how to use GitHub Actions workflows to ma 1. [**Terraform Unit Tests**](.github/workflows/tf-unit-tests.yml) - This workflow runs on every commit and is composed of a set of unit tests on the infrastructure code. It runs [terraform fmt]( https://www.terraform.io/cli/commands/fmt) to ensure the code is properly linted and follows terraform best practices. Next it performs [terraform validate](https://www.terraform.io/cli/commands/validate) to check that the code is syntactically correct and internally consistent. Lastly, [checkov](https://github.com/bridgecrewio/checkov), an open source static code analysis tool for IaC, will run to detect security and complaince issues. If the repository is utilizing GitHub Advanced Security (GHAS), the results will be uploaded to GitHub. + This workflow runs on every commit and is composed of a set of unit tests on the infrastructure code. It runs [terraform fmt]( https://www.terraform.io/cli/commands/fmt) to ensure the code is properly linted and follows terraform best practices. Next it performs [terraform validate](https://www.terraform.io/cli/commands/validate) to check that the code is syntactically correct and internally consistent. Lastly, [checkov](https://github.com/bridgecrewio/checkov), an open source static code analysis tool for IaC, will run to detect security and compliance issues. If the repository is utilizing GitHub Advanced Security (GHAS), the results will be uploaded to GitHub. 2. [**Terraform Plan / Apply**](.github/workflows/tf-plan-apply.yml)