Files
webapp/iac/providers.tf
Gabriel Radureau 9761996957
All checks were successful
Docker Build / build-and-push-image (push) Successful in 53s
switch from duckdns.org to internal .lab dns
2026-01-01 15:03:06 +01:00

16 lines
321 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_webapp"
}
}