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

This commit is contained in:
2025-08-06 11:51:02 +02:00
parent f4d32b37d8
commit 82b42c0006

View File

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