beeta/devops/terraform/modules/vpc/variables.tf
2026-01-05 22:54:27 -05:00

20 lines
375 B
HCL

variable "name" {
description = "Name of the VPC"
type = string
}
variable "region" {
description = "DigitalOcean region"
type = string
}
variable "ip_range" {
description = "IP range for the VPC (CIDR notation)"
type = string
}
variable "description" {
description = "Description of the VPC"
type = string
default = ""
}