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

34 lines
604 B
Terraform
Raw Normal View History

2024-12-06 16:31:21 +01:00
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
}
2024-12-06 16:31:21 +01:00
2024-12-04 16:20:32 +01:00
variable "region" {
description = "Région du projet"
2024-12-04 16:20:32 +01:00
type = string
}
2024-12-06 16:31:21 +01:00
2024-12-04 16:20:32 +01:00
variable "frontend_cidr" {
description = "cidr du frontend"
2024-12-04 16:20:32 +01:00
type = string
}
2024-12-06 16:31:21 +01:00
2024-12-04 16:20:32 +01:00
variable "backend_cidr" {
description = "cidr du backend"
2024-12-04 16:20:32 +01:00
type = string
}
2024-12-06 16:31:21 +01:00
2024-12-04 16:20:32 +01:00
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
}