Compare commits

..

1 Commits

Author SHA1 Message Date
b3f70d121e feat: add pre-commit check in ci
Some checks failed
ci/woodpecker/pr/pre-commit Pipeline failed
- add a ci workflow to verify pre-commit passes
- fix pre-commit errors/warnings:
  - missing required_version
  - missing required_providers
  - fixed terraform_deprecated_interpolation
  - removed terraform_unused_declarations
2026-02-28 20:03:31 +11:00
2 changed files with 8 additions and 2 deletions

View File

@ -61,6 +61,12 @@ variable "enable_templating" {
default = false
}
variable "default_issuer_ref" {
description = "Reference to the default issuer"
type = string
default = null
}
variable "default_follows_latest_issuer" {
description = "Whether the default issuer should follow the latest issuer"
type = bool