Modify : add secret in Vault
All checks were successful
terraform validation / Terraform (push) Successful in 12s
All checks were successful
terraform validation / Terraform (push) Successful in 12s
This commit is contained in:
23
variables.tf
23
variables.tf
@@ -5,13 +5,6 @@ variable "cloudflare_email" {
|
||||
default = "thedjinhn@gmail.com"
|
||||
}
|
||||
|
||||
variable "cloudflare_api_token" {
|
||||
description = "Le jeton de l'API Cloudflare."
|
||||
type = string
|
||||
sensitive = true
|
||||
default = "EiFZGvTTRwOgFB8-OiiNyuLGEPEZvqjM8ckpA-lA"
|
||||
}
|
||||
|
||||
variable "cloudflare_zone_id" {
|
||||
description = "La zone DNS à laquelle ajouter l'enregistrement."
|
||||
type = string
|
||||
@@ -19,9 +12,23 @@ variable "cloudflare_zone_id" {
|
||||
default = "82345d1f868f476b080d5ad04d39bd0c"
|
||||
}
|
||||
|
||||
variable "main_server" {
|
||||
variable "ip_server_a" {
|
||||
description = "Le serveur principal"
|
||||
type = string
|
||||
sensitive = true
|
||||
default = "10.0.4.50"
|
||||
}
|
||||
|
||||
variable "vault_url" {
|
||||
description = "URL du serveur Vault"
|
||||
type = string
|
||||
sensitive = true
|
||||
default = "https://vault.tips-of-mine.com"
|
||||
}
|
||||
|
||||
variable "vault_token" {
|
||||
description = "Token d'acces"
|
||||
type = string
|
||||
sensitive = true
|
||||
default = "hvs.BUXBydP1Iy6leqNIo2wx478p"
|
||||
}
|
||||
|
Reference in New Issue
Block a user