Skip to content

Commit

Permalink
Merge pull request #1 from clouddrove/CD-180
Browse files Browse the repository at this point in the history
add manageby
  • Loading branch information
anmolnagpal committed Jun 8, 2020
2 parents 9760e90 + 30625f1 commit 49757f4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 3 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ module "labels" {
name = var.name
application = var.application
environment = var.environment
managedby = var.managedby
label_order = var.label_order

}

#Module : VPC PEERING CONNECTION
Expand Down Expand Up @@ -122,4 +124,4 @@ resource "aws_route" "acceptor" {
data.aws_route_table.acceptor,
aws_vpc_peering_connection.default,
]
}
}
8 changes: 7 additions & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ variable "tags" {
description = "Additional tags (e.g. map(`BusinessUnit`,`XYZ`)."
}

variable "managedby" {
type = string
default = "anmol@clouddrove.com"
description = "ManagedBy, eg 'CloudDrove' or 'AnmolNagpal'."
}

#Module : VPC PEERING
#Description : Terraform vpc peering module variables.
variable "enable_peering" {
Expand Down Expand Up @@ -64,4 +70,4 @@ variable "requestor_allow_remote_vpc_dns_resolution" {
type = bool
default = true
description = "Allow requestor VPC to resolve public DNS hostnames to private IP addresses when queried from instances in the acceptor VPC."
}
}

0 comments on commit 49757f4

Please sign in to comment.