You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding tooling and documentation for locally run tflint (#6370)
created a Makefile on `./terraform-aws-github-runner` to perform tflint
actions, and replaced the tflint calls on CI (`tflint.yml`) with this
makefile.
This makes much easier to test locally and make sure to get green
signals on CI. Reducing the loop time to fix small syntax bugs.
Copy file name to clipboardexpand all lines: terraform-aws-github-runner/README.md
+12
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,18 @@
2
2
3
3
This is a terraform module that sets up self hosted github runners on AWS along with the infra needed to autoscale them
4
4
5
+
# Testing your changes
6
+
In order to verify if your changes will pass CI testing, you can simply run from this directory:
7
+
8
+
```
9
+
$ make tflint
10
+
```
11
+
12
+
This depends on Tofu, CMake and TFLint being installed.
13
+
14
+
# Checking plan changes of your changes
15
+
This module is not stand alone. It is a reusable module designed to be imported, configured, and used in your project.
16
+
5
17
# Release
6
18
Terraform code that uses this module specify the tag (version of test-infra) that they use via a file called `Terrafile`. We need to create a new tag for any changes here that we want to deploy and update the `Terrafile` to refer to that tag:
0 commit comments