Files
tools/hashicorp-vault/iac/providers.tf
Gabriel Radureau 02322e9a24
Some checks failed
Helm Charts / Detect changed charts (push) Successful in 22s
Helm Charts / Library charts tool (push) Has been skipped
Helm Charts / Application charts pgcat (push) Failing after 34s
use internal .lab instead of failing duckdns.org
2025-12-31 17:54:36 +01:00

16 lines
292 B
HCL

terraform {
required_providers {
vault = {
source = "vault"
version = "4.4.0"
}
}
}
provider "vault" {
address = "https://vault.arcodange.lab"
auth_login_jwt { # TERRAFORM_VAULT_AUTH_JWT environment variable
mount = "gitea_jwt"
role = "gitea_cicd"
}
}