Actualiser variables.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 6s
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 6s
This commit is contained in:
12
variables.tf
12
variables.tf
@@ -2,14 +2,16 @@ variable "cloudflare_email" {
|
|||||||
description = "L'adresse électronique associée au compte."
|
description = "L'adresse électronique associée au compte."
|
||||||
type = string
|
type = string
|
||||||
sensitive = true
|
sensitive = true
|
||||||
default = "thedjinhn@gmail.com"
|
default = ${{ secrets.EMAIL }}
|
||||||
|
#thedjinhn@gmail.com
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "cloudflare_zone_id" {
|
variable "cloudflare_zone_id" {
|
||||||
description = "La zone DNS à laquelle ajouter l'enregistrement."
|
description = "La zone DNS à laquelle ajouter l'enregistrement."
|
||||||
type = string
|
type = string
|
||||||
sensitive = true
|
sensitive = true
|
||||||
default = "a5eb1b667ba2fde356ecf6707d0dd309"
|
default = ${{ secrets.ZONE_ID }}
|
||||||
|
#a5eb1b667ba2fde356ecf6707d0dd309
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "ip_server_a" {
|
variable "ip_server_a" {
|
||||||
@@ -23,14 +25,16 @@ variable "vault_url" {
|
|||||||
description = "URL du serveur Vault"
|
description = "URL du serveur Vault"
|
||||||
type = string
|
type = string
|
||||||
sensitive = true
|
sensitive = true
|
||||||
default = "https://vault.tips-of-mine.com"
|
default = ${{ secrets.VAULT_URL }}
|
||||||
|
#https://vault.tips-of-mine.com
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "vault_token" {
|
variable "vault_token" {
|
||||||
description = "Token d'acces"
|
description = "Token d'acces"
|
||||||
type = string
|
type = string
|
||||||
sensitive = true
|
sensitive = true
|
||||||
default = "hvs.BUXBydP1Iy6leqNIo2wx478p"
|
default = ${{ secrets.VAULT_TOKEN }}
|
||||||
|
#hvs.BUXBydP1Iy6leqNIo2wx478p
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "cloudflare_api_token" {
|
variable "cloudflare_api_token" {
|
||||||
|
Reference in New Issue
Block a user