Browse Source

Fixes refrence to bastion in openvpn's security group

Fred Damstra 4 years ago
parent
commit
b632b7900e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      base/openvpn/main.tf

+ 1 - 1
base/openvpn/main.tf

@@ -178,7 +178,7 @@ data "template_cloudinit_config" "cloud-init" {
 
 resource "aws_security_group" "openvpn_security_group" {
   name = "openvpn_security_group"
-  description = "Security Group for Bastion Server(s)"
+  description = "Security Group for OpenVPN Instance(s)"
   vpc_id = var.vpc_id
   tags = merge(var.standard_tags, var.tags)
 }