Skip to content

Commit

Permalink
fix tags
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed May 3, 2021
1 parent d9c1e36 commit 5b2a214
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vpn/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ resource "aws_vpn_gateway" "vpn" {

tags = merge(
local.base_tags,
local.tags,
var.tags,
map("Name", format("%v%v", local._prefixes["vpn-gateway"], var.vpc_full_name))
)
}
Expand All @@ -83,7 +83,7 @@ resource "aws_customer_gateway" "vpn" {

tags = merge(
local.base_tags,
local.tags,
var.tags,
map("Name", format("%v%v-%v", local._prefixes["customer-gateway"], each.key, var.vpc_full_name)),
)
}
Expand Down Expand Up @@ -112,7 +112,7 @@ resource "aws_vpn_connection" "vpn" {

tags = merge(
local.base_tags,
local.tags,
var.tags,
map("Name", format("%v%v-%v", local._prefixes["vpn-connection"], each.key, var.vpc_full_name))
)
}
Expand Down

0 comments on commit 5b2a214

Please sign in to comment.