Skip to content
This repository has been archived by the owner on Mar 11, 2020. It is now read-only.

Commit

Permalink
add type tag to peering connection
Browse files Browse the repository at this point in the history
  • Loading branch information
jjno91 committed Nov 11, 2018
1 parent 491a8fe commit 04b0496
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resource "aws_vpc_peering_connection" "this" {
peer_vpc_id = "${var.peer_vpc_id}"
peer_owner_id = "${var.peer_owner_id}"
peer_region = "${var.peer_region}"
tags = "${merge(map("Name", "${var.env}-peer-${var.peer_env}"), var.tags)}"
tags = "${merge(map("Name", "${var.env}-peer-${var.peer_env}"), map("Type", "Requester"), var.tags)}"
}

resource "aws_route" "this" {
Expand Down

0 comments on commit 04b0496

Please sign in to comment.