mirror of
https://github.com/outbackdingo/terraform-render-bootstrap.git
synced 2026-01-27 18:20:40 +00:00
Add Terraform fmt GitHub Action and dependabot config
* Run terraform fmt on pull requests and merge to main * Show workflow status in README * Add dependabot.yaml to keep GitHub Actions updated
This commit is contained in:
6
.github/dependabot.yaml
vendored
Normal file
6
.github/dependabot.yaml
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
21
.github/workflows/test.yaml
vendored
Normal file
21
.github/workflows/test.yaml
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
name: test
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
jobs:
|
||||
terraform:
|
||||
name: fmt
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: terraform
|
||||
uses: hashicorp/setup-terraform@v2
|
||||
with:
|
||||
terraform_version: 1.2.5
|
||||
|
||||
- name: fmt
|
||||
run: terraform fmt -check -diff -recursive
|
||||
@@ -1,4 +1,4 @@
|
||||
# terraform-render-bootstrap [](https://github.com/sponsors/poseidon) [](https://twitter.com/typhoon8s)
|
||||
# terraform-render-bootstrap [](https://github.com/poseidon/terraform-render-bootstrap/actions/workflows/test.yaml?query=branch%3Amain) [](https://github.com/sponsors/poseidon) [](https://twitter.com/typhoon8s)
|
||||
|
||||
`terraform-render-bootstrap` is a Terraform module that renders TLS certificates, static pods, and manifests for bootstrapping a Kubernetes cluster.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user