Actualiser variables.tf
All checks were successful
Terraform Apply / Terraform Apply (push) Successful in 7s

This commit is contained in:
2025-08-08 09:02:13 +02:00
parent 8afa98700b
commit bf3c101b87

View File

@@ -0,0 +1,17 @@
variable "vault_url" {
description = "URL du serveur Vault"
type = string
sensitive = true
default = "https://vault.tips-of-mine.com"
# ${{ secrets.VAULT_URL }}
# "https://vault.tips-of-mine.com"
}
variable "vault_token" {
description = "Token d'acces"
type = string
sensitive = true
default = "hvs.BUXBydP1Iy6leqNIo2wx478p"
# ${{ secrets.VAULT_TOKEN }}
# "hvs.BUXBydP1Iy6leqNIo2wx478p"
}