Skip to content

Commit

Permalink
Remove “external” from security group name
Browse files Browse the repository at this point in the history
  • Loading branch information
sgarner committed Feb 16, 2023
1 parent 06eff07 commit ea6aae4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wireguard-securitygroups.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
resource "aws_security_group" "sg_wireguard_external" {
name = "wireguard-${var.env}-external"
description = "Terraform Managed. Allow Wireguard client traffic from internet."
name = "wireguard-${var.env}"
description = "Wireguard Server"
vpc_id = var.vpc_id

tags = {
Name = "wireguard-${var.env}-external"
Name = "wireguard-${var.env}"
Project = "wireguard"
tf-managed = "True"
env = var.env
Expand Down

0 comments on commit ea6aae4

Please sign in to comment.