Terraform resource: aws vpc peering connection

From wikieduonline
(Redirected from Aws vpc peering connection)
Jump to navigation Jump to search

aws_vpc_peering_connection tf.io

resource "aws_vpc_peering_connection" "foo" {
  peer_owner_id = var.peer_owner_id
  peer_vpc_id   = aws_vpc.bar.id
  vpc_id        = aws_vpc.foo.id

  accepter {
    allow_remote_vpc_dns_resolution = true
  }

  requester {
    allow_remote_vpc_dns_resolution = true
  }
}


auto_accept

Related[edit]

See also[edit]

Advertising: