Files
terraform-vault/modules/vault_cluster/modules/auth_approle_backend/main.tf
T
unkinben 66119e5207
ci/woodpecker/pr/pre-commit Pipeline was successful
feat: add pre-commit check in ci
- 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 21:42:47 +11:00

12 lines
234 B
Terraform

resource "vault_auth_backend" "approle" {
type = "approle"
path = var.path
tune {
default_lease_ttl = var.default_lease_ttl
max_lease_ttl = var.max_lease_ttl
listing_visibility = var.listing_visibility
}
}