diff --git a/README.md b/README.md index d242f4d..fc43f66 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ No modules. | [s3\_key](#input\_s3\_key) | The S3 key of an object containing the function's deployment package | `string` | `null` | no | | [s3\_object\_version](#input\_s3\_object\_version) | The object version containing the function's deployment package | `string` | `null` | no | | [security\_group\_egress\_rules](#input\_security\_group\_egress\_rules) | Security Group egress rules |
list(object({| `[]` | no | -| [security\_group\_id](#input\_security\_group\_id) | The security group for running the Lambda within the VPC. If not specified a minimal default SG will be created | `string` | `null` | no | +| [security\_group\_ids](#input\_security\_group\_ids) | The security group(s) for running the Lambda within the VPC. If not specified a minimal default SG will be created | `list(string)` | `[]` | no | | [security\_group\_name\_prefix](#input\_security\_group\_name\_prefix) | An optional prefix to create a unique name of the security group. If not provided `var.name` will be used | `string` | `null` | no | | [source\_code\_hash](#input\_source\_code\_hash) | Optional source code hash | `string` | `null` | no | | [subnet\_ids](#input\_subnet\_ids) | The subnet ids where this lambda needs to run | `list(string)` | `null` | no | @@ -93,7 +93,8 @@ No modules. | [name](#output\_name) | Function name of the Lambda | | [qualified\_arn](#output\_qualified\_arn) | Qualified ARN of the Lambda | | [role\_arn](#output\_role\_arn) | ARN of the lambda execution role | -| [security\_group\_id](#output\_security\_group\_id) | If the Lambda is deployed into a VPC this will output the security group id | +| [security\_group\_id](#output\_security\_group\_id) | If the Lambda is deployed into a VPC this will output the genetered security group id (if no security groups are specified) | +| [security\_group\_ids](#output\_security\_group\_ids) | List of all the security group ids associated with the Lambda | | [version](#output\_version) | Latest published version of the Lambda function |
cidr_ipv4 = optional(string)
cidr_ipv6 = optional(string)
description = string
from_port = optional(number, 0)
ip_protocol = optional(string, "-1")
prefix_list_id = optional(string)
referenced_security_group_id = optional(string)
to_port = optional(number, 0)
}))