1
0

feat: new nacl module improved with Qoder

This commit is contained in:
xpk
2026-04-10 23:43:10 +08:00
parent 998636f079
commit ebdbd19d28
6 changed files with 142 additions and 54 deletions
+20 -11
View File
@@ -1,19 +1,28 @@
variable vpc_id {
type = string
variable "vpc_id" {
type = string
description = "VPC ID"
}
variable subnet_ids {
variable "subnet_ids" {
type = list(string)
description = "IDs of subnet to be associated with the nacl"
}
variable "ingress_rules" {
type = list(string)
description = "Ingress rules. See example"
# description = <<-EOT
# List of ingress rules. Example:
# "tcp,443,443,10.35.32.0/22,allow"
# EOT
}
variable ingress_rules {
type = list(list(string))
variable "egress_rules" {
type = list(string)
description = "Egress rules. See example"
}
variable egress_rules {
type = list(list(string))
}
variable acl_name {
type = string
variable "acl_name" {
type = string
description = "ACL name tag"
}