feat: new nacl module improved with Qoder
This commit is contained in:
@@ -1,19 +1,28 @@
|
||||
variable vpc_id {
|
||||
type = string
|
||||
variable "vpc_id" {
|
||||
type = string
|
||||
description = "VPC ID"
|
||||
}
|
||||
|
||||
variable subnet_ids {
|
||||
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 ingress_rules {
|
||||
type = list(list(string))
|
||||
variable "egress_rules" {
|
||||
type = list(string)
|
||||
description = "Egress rules. See example"
|
||||
}
|
||||
|
||||
variable egress_rules {
|
||||
type = list(list(string))
|
||||
}
|
||||
|
||||
variable acl_name {
|
||||
type = string
|
||||
variable "acl_name" {
|
||||
type = string
|
||||
description = "ACL name tag"
|
||||
}
|
||||
Reference in New Issue
Block a user