Actualiser variables.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 24s
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 24s
This commit is contained in:
24
variables.tf
24
variables.tf
@@ -0,0 +1,24 @@
|
||||
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 "cloudflare_api_token" {
|
||||
description = "my cloudflare api token here"
|
||||
type = string
|
||||
sensitive = true
|
||||
default = ""
|
||||
}
|
Reference in New Issue
Block a user