Files
terraform-aws-S3-bucket/variables.tf
Hubert Cornet 50a4c8d183
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 7s
Actualiser variables.tf
2025-08-06 18:38:56 +02:00

23 lines
586 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"
}
variable "bucket-list" {
type = list
# default = ["cloudflare-dns-org", "cloudflare-dns-com", "aws-bucket"]
default = ["aws-bucket"]
}