aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/digitalocean/firewall/variables.tf
diff options
context:
space:
mode:
Diffstat (limited to 'digitalocean/firewall/variables.tf')
-rw-r--r--digitalocean/firewall/variables.tf10
1 files changed, 10 insertions, 0 deletions
diff --git a/digitalocean/firewall/variables.tf b/digitalocean/firewall/variables.tf
new file mode 100644
index 0000000..6512f00
--- /dev/null
+++ b/digitalocean/firewall/variables.tf
@@ -0,0 +1,10 @@
+variable "name" {
+ type = string
+}
+variable "open_ports" {
+ type = list(string)
+ default = ["22"]
+}
+variable "droplet_ids" {
+ type = list(string)
+}