Files
terraform-aws-iam-policy/variables.tf
Hubert Cornet 770e340a1d
Some checks failed
terraform validation / Terraform (push) Failing after 11s
Actualiser variables.tf
2025-08-19 21:11:15 +02:00

17 lines
439 B
HCL

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"
}