Skip to content

Commit

Permalink
feat: update and added resource description
Browse files Browse the repository at this point in the history
  • Loading branch information
anmolnagpal committed Jun 6, 2023
1 parent 1b53d4e commit ff0a764
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ resource "aws_security_group_rule" "egress_ipv6" {
ipv6_cidr_blocks = ["::/0"]
security_group_id = join("", aws_security_group.default.*.id)
}

#defsec:ignore:aws-ec2-no-public-egress-sgr
resource "aws_security_group_rule" "ingress" {
count = length(var.allowed_ip) > 0 == true && length(var.sg_ids) < 1 ? length(compact(var.allowed_ports)) : 0

Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ variable "at_rest_encryption_enabled" {

variable "transit_encryption_enabled" {
type = bool
default = false
default = true
description = "Whether to enable encryption in transit."
}

Expand Down

0 comments on commit ff0a764

Please sign in to comment.