From 6fdcc2b71b20ba1528a365f6ee4eb9f1bc6ef9ec Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Tue, 18 Feb 2025 09:36:22 -0800 Subject: [PATCH] Improve documentation for security groups I was a bit confused reading some of this Signed-off-by: Tim Smith --- providers/aws/resources/aws.lr | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/providers/aws/resources/aws.lr b/providers/aws/resources/aws.lr index a518f3efdd..c2efa3e774 100644 --- a/providers/aws/resources/aws.lr +++ b/providers/aws/resources/aws.lr @@ -3205,7 +3205,7 @@ private aws.ec2.securitygroup @defaults("id name region vpc.id") { // Amazon EC2 security group IP permission private aws.ec2.securitygroup.ippermission @defaults("id toPort fromPort ipProtocol ipRanges ipv6Ranges") { - // Unique ID for the IP permission + // AWS ID of the security group id string // Start of port range for TCP/UDP protocols fromPort int @@ -3213,11 +3213,11 @@ private aws.ec2.securitygroup.ippermission @defaults("id toPort fromPort ipProto toPort int // IP protocol name ipProtocol string - // IPv4 ranges + // IPv4 address ranges ipRanges []string - // IPv6 ranges + // IPv6 address ranges ipv6Ranges []string - // List of Prefix IDs + // List of prefix IDs prefixListIds []dict // List of user ID group pairs userIdGroupPairs []dict