Skip to content

Commit

Permalink
removing go.mod file and adding comment for random IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
haitchison committed Jan 4, 2024
1 parent 7f3e54f commit ba3c274
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 0 additions & 3 deletions go.mod

This file was deleted.

5 changes: 3 additions & 2 deletions test/unit-test/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -212,14 +212,15 @@ resource "aws_security_group" "lambda_security_group_test" {
name = format("lambda-vpc-module-test-%s", random_id.sg_name.dec)
description = "lambda attached to vpc test security group"
vpc_id = data.aws_vpc.platforms-test.id
tags = local.tags

egress {
description = "Allow all outbound traffic"
from_port = 0
to_port = 0
protocol = "-1"
}

tags = local.tags
}

data "archive_file" "lambda-zip" {
Expand All @@ -236,7 +237,7 @@ resource "aws_lambda_invocation" "test_vpc_invocation" {
})
}

# temporary random IDs
# random IDs to allow for go unit test to run to completion via github action

resource "random_id" "lambda_name" {
byte_length = 1
Expand Down

0 comments on commit ba3c274

Please sign in to comment.