hcornet c08635a7b9
Some checks failed
terraform validation / Terraform (push) Failing after 13s
Update : file variables
2025-01-18 20:42:22 +01:00

49 lines
1.1 KiB
HCL

variable "instance_name" {
description = "the name of the database instance to create"
type = string
sensitive = true
default = "demo"
}
variable "region" {
description = "the GCP region to deploy the database to"
type = string
sensitive = true
default = "europe-west1"
}
variable "database_tier" {
description = "the database tier to use"
type = string
sensitive = true
default = "db-f1-micro"
}
variable "database_name" {
description = "the name of the database to create in the instance"
type = string
sensitive = true
default = "demo"
}
variable "database_user_name" {
description = "the name of the database user to create"
type = string
sensitive = true
default = "administrator"
}
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"
}