19 lines
232 B
HCL
19 lines
232 B
HCL
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
|
|
} |