Skip to content

Commit c364b6b

Browse files
authored
fix: no nullable inputs (#2)
1 parent 3302e7a commit c364b6b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

variables.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ variable "common_tags" {
66

77
variable "vpc_id" {
88
description = "The ID of the VPC."
9+
nullable = false
910
type = string
1011
}
1112

@@ -23,6 +24,7 @@ variable "description" {
2324

2425
variable "ingress_rules" {
2526
description = "Inbound rules (ingress) for this security group."
27+
nullable = false
2628
type = map(object({
2729
description = optional(string, null)
2830
ip_protocol = optional(string, "tcp")
@@ -45,6 +47,7 @@ variable "ingress_rules" {
4547

4648
variable "egress_rules" {
4749
description = "Outbound rules (egress) for this security group."
50+
nullable = false
4851
type = map(object({
4952
description = optional(string, null)
5053
ip_protocol = optional(string, "tcp")

0 commit comments

Comments
 (0)