Skip to content

Commit

Permalink
Improve documentation for security groups (#5237)
Browse files Browse the repository at this point in the history
I was a bit confused reading some of this

Signed-off-by: Tim Smith <tsmith84@gmail.com>
  • Loading branch information
tas50 authored Feb 18, 2025
1 parent c01b7d2 commit bad4a24
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions providers/aws/resources/aws.lr
Original file line number Diff line number Diff line change
Expand Up @@ -3205,19 +3205,19 @@ 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
// End of port range for TCP/UDP protocols
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
Expand Down

0 comments on commit bad4a24

Please sign in to comment.