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