beeta/devops/terraform/modules/vpc/variables.tf

21 lines
375 B
Terraform
Raw Normal View History

2026-01-05 22:54:27 -05:00
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 = ""
}