Actualiser variables.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 8s

This commit is contained in:
2025-08-05 14:29:56 +02:00
parent 573d63a952
commit e419ba3e88

View File

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