Skip to content

Commit

Permalink
chore: revert network interface sg changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kieranbrown authored Feb 25, 2024
1 parent 751d0b6 commit f24486f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ resource "aws_security_group" "main" {
resource "aws_network_interface" "main" {
description = "${var.name} static private ENI"
subnet_id = var.subnet_id
security_groups = local.security_groups
security_groups = [aws_security_group.main.id]
source_dest_check = false

tags = merge(var.tags, {
Expand Down

0 comments on commit f24486f

Please sign in to comment.