28 lines
577 B
Terraform
28 lines
577 B
Terraform
variable "vpc_id" {
|
|
type = string
|
|
description = "VPC ID"
|
|
}
|
|
|
|
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 "egress_rules" {
|
|
type = list(string)
|
|
description = "Egress rules. See example"
|
|
}
|
|
|
|
variable "acl_name" {
|
|
type = string
|
|
description = "ACL name tag"
|
|
} |