Skip to content

Commit

Permalink
Tags updates (#23)
Browse files Browse the repository at this point in the history
* added tag type

* added tag type
  • Loading branch information
harmanjyotkaur authored Jun 30, 2021
1 parent c656c5a commit 883dc4b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ module "private-labels" {
managedby = var.managedby
label_order = var.label_order
attributes = compact(concat(var.attributes, ["private"]))
extra_tags = {
Type = "private"
}
}

module "public-labels" {
Expand All @@ -37,6 +40,9 @@ module "public-labels" {
managedby = var.managedby
label_order = var.label_order
attributes = compact(concat(var.attributes, ["public"]))
extra_tags = {
Type = "public"
}
}

#Module : PUBLIC SUBNET
Expand Down

0 comments on commit 883dc4b

Please sign in to comment.