Files
terraform-aws-vpc/variables.tf
Hubert Cornet cae583be20
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 22s
Actualiser variables.tf
2025-08-07 13:20:17 +02:00

38 lines
826 B
HCL

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"
}
variable "aws_region" {
default = "eu-north-1"
}
variable "environment" {
default = "Production"
}
variable "vpc_cidr" {
default = "10.0.0.0/16"
description = "CIDR block of the vpc"
}
variable "public_subnets_cidr" {
type = list(any)
default = ["10.0.0.0/20", "10.0.128.0/20"]
description = "CIDR block for Public Subnet"
}
variable "private_subnets_cidr" {
type = list(any)
default = ["10.0.16.0/20", "10.0.144.0/20"]
description = "CIDR block for Private Subnet"
}