1
0
Files
terraform.examples/modules/networking/nacl/variables.tf
T
2026-02-13 15:44:24 +08:00

19 lines
232 B
Terraform

variable vpc_id {
type = string
}
variable subnet_ids {
type = list(string)
}
variable ingress_rules {
type = list(list(string))
}
variable egress_rules {
type = list(list(string))
}
variable acl_name {
type = string
}