20 lines
375 B
HCL
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 = ""
|
|
}
|