From c364b6b798b83d8e71a41d3bb767ef7d42e99f25 Mon Sep 17 00:00:00 2001 From: Piotr Stawarski Date: Fri, 26 Jan 2024 15:27:57 +0100 Subject: [PATCH] fix: no nullable inputs (#2) --- variables.tf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/variables.tf b/variables.tf index 0edf870..6aee614 100644 --- a/variables.tf +++ b/variables.tf @@ -6,6 +6,7 @@ variable "common_tags" { variable "vpc_id" { description = "The ID of the VPC." + nullable = false type = string } @@ -23,6 +24,7 @@ variable "description" { variable "ingress_rules" { description = "Inbound rules (ingress) for this security group." + nullable = false type = map(object({ description = optional(string, null) ip_protocol = optional(string, "tcp") @@ -45,6 +47,7 @@ variable "ingress_rules" { variable "egress_rules" { description = "Outbound rules (egress) for this security group." + nullable = false type = map(object({ description = optional(string, null) ip_protocol = optional(string, "tcp")