fix: tf validate checks examples
All checks were successful
Setup Terraform / Terraform Versions (pull_request) Successful in 11s

This commit is contained in:
2024-08-15 23:22:12 +02:00
parent 7ad9f1f5ac
commit 2972a542f6

View File

@@ -22,7 +22,9 @@ jobs:
- name: Terraform Init
id: init
run: terraform init
working-directory: examples
- name: Terraform Validate
id: validate
run: terraform validate -no-color
run: terraform validate -no-color
working-directory: examples

View File

@@ -2,7 +2,7 @@ terraform {
required_providers {
gitea = {
source = "go-gitea/gitea"
version = "0.1.0"
version = "0.3.0"
}
}
}
@@ -12,4 +12,4 @@ provider "gitea" {
username = "lerentis"
password = var.gitea_password
#token = var.gitea_token
}
}