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 04b6b6b commit 43d14df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions security-groups/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ module "sg-linux-base" {
enable_self = false
tags = merge(
local.base_tags,
local.tags,
var.tags,
map("Environment", var.vpc_environment),
)
}
Expand All @@ -51,7 +51,7 @@ module "sg-windows-base" {
enable_self = false
tags = merge(
local.base_tags,
local.tags,
var.tags,
map("Environment", var.vpc_environment),
)
}
Expand All @@ -63,8 +63,8 @@ module "sg-ois-scanner" {
use_vpc_cidr = false
enable_self = false
tags = merge(
local.tags,
local.base_tags,
var.tags,
map("Environment", var.vpc_environment),
)
}

0 comments on commit 43d14df

Please sign in to comment.