aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/digitalocean/firewall/variables.tf
blob: 6512f005411a0a1cb5d2602fdbcfdee610f858c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
variable "name" {
  type = string
}
variable "open_ports" {
  type    = list(string)
  default = ["22"]
}
variable "droplet_ids" {
  type = list(string)
}