Actualiser variables.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 22s

This commit is contained in:
2025-08-07 14:12:40 +02:00
parent 559eac3a61
commit 019bb2ebd9

View File

@@ -11,28 +11,3 @@ variable "vault_token" {
sensitive = true sensitive = true
default = "hvs.BUXBydP1Iy6leqNIo2wx478p" 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"
}