66119e5207
ci/woodpecker/pr/pre-commit Pipeline was successful
- 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
12 lines
234 B
Terraform
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
|
|
}
|
|
}
|