terraform.aws-baseline-infra/modules/networking/nacl/variables.tf

19 lines
232 B
Terraform
Raw Normal View History

2023-10-25 19:36:23 +08:00
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
}