Some checks failed
Terraform Apply / Terraform Apply (push) Has been cancelled
24 lines
554 B
HCL
24 lines
554 B
HCL
variable "vault_url" {
|
|
description = "URL du serveur Vault"
|
|
type = string
|
|
sensitive = true
|
|
# default = "${{ secrets.VAULT_URL }}"
|
|
# ${{ secrets.VAULT_URL }}
|
|
# "https://vault.tips-of-mine.com"
|
|
}
|
|
|
|
variable "vault_token" {
|
|
description = "Token d'acces"
|
|
type = string
|
|
sensitive = true
|
|
# default = "${{ secrets.VAULT_TOKEN }}"
|
|
# ${{ secrets.VAULT_TOKEN }}
|
|
# "hvs.BUXBydP1Iy6leqNIo2wx478p"
|
|
}
|
|
|
|
variable "aws_region" {
|
|
description = "Region AWS"
|
|
type = string
|
|
sensitive = true
|
|
default = "eu-north-1"
|
|
} |