Skip to content

Commit 4c04785

Browse files
authored
docs: Correct typo in security_group_rules doc comment (#38)
1 parent be2b7c7 commit 4c04785

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ module "efs" {
5959
security_group_vpc_id = "vpc-1234556abcdef"
6060
security_group_rules = {
6161
vpc = {
62-
# relying on the defaults provdied for EFS/NFS (2049/TCP + ingress)
62+
# relying on the defaults provided for EFS/NFS (2049/TCP + ingress)
6363
description = "NFS ingress from VPC private subnets"
6464
cidr_blocks = ["10.99.3.0/24", "10.99.4.0/24", "10.99.5.0/24"]
6565
}

examples/complete/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ module "efs" {
6464
security_group_vpc_id = module.vpc.vpc_id
6565
security_group_rules = {
6666
vpc = {
67-
# relying on the defaults provdied for EFS/NFS (2049/TCP + ingress)
67+
# relying on the defaults provided for EFS/NFS (2049/TCP + ingress)
6868
description = "NFS ingress from VPC private subnets"
6969
cidr_blocks = module.vpc.private_subnets_cidr_blocks
7070
}

0 commit comments

Comments
 (0)