Skip to content

Commit

Permalink
Added new code
Browse files Browse the repository at this point in the history
  • Loading branch information
nitin-das committed Nov 30, 2019
1 parent e3813c9 commit c2a823b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,15 @@ variable "ingress_rules" {

variable "egress_rules" {
description = "Egress rules for security group"
type = list(map(string))
type = list(object({
from_port = string
to_port = number
protocol = string
cidr_blocks = list(string)
description = string
self = bool
security_groups = list(string)
ipv6_cidr_blocks = list(string)
prefix_list_ids = list(string)
}))
}

0 comments on commit c2a823b

Please sign in to comment.