DEV5.6TP7/tp-cloud/terraform/modules/network/variables.tf

35 lines
605 B
Terraform
Raw Normal View History

2024-12-04 16:20:32 +01:00
variable "project_name" {
description = "Nom du projet"
2024-12-04 16:20:32 +01:00
type = string
}
variable "region" {
description = "Région du projet"
2024-12-04 16:20:32 +01:00
type = string
}
variable "frontend_cidr" {
description = "cidr du frontend"
2024-12-04 16:20:32 +01:00
type = string
}
variable "backend_cidr" {
description = "cidr du backend"
2024-12-04 16:20:32 +01:00
type = string
}
variable "database_cidr" {
description = "cidr du database"
2024-12-04 16:20:32 +01:00
type = string
}
variable "ssh_source_ranges" {
description = "Accès à internet"
2024-12-04 16:20:32 +01:00
type = string
}
variable "cidr_range" {
description = "cidr de network"
2024-12-04 16:20:32 +01:00
type = string
}