Skip to content

Commit

Permalink
Merge pull request #9 from QuiNovas/develop
Browse files Browse the repository at this point in the history
updated readme
  • Loading branch information
vchinnakotla authored Mar 30, 2020
2 parents 848ed16 + e98aab7 commit 430df09
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,35 @@

This module creates the requested VPC peering and routes required.

## Usage

```hcl
provider "aws" {
alias = "ohio"
allowed_account_ids = local.allowed_account_ids
region = "us-east-2"
}
provider "aws" {
alias = "n_virginia"
allowed_account_ids = local.allowed_account_ids
region = "us-east-1"
}
module "peering" {
accepter_vpc_id = "vpc-123456789abc"
providers = {
aws.accepter = aws.ohio
aws.requester = aws.n_virginia
}
requester_vpc_id = "vpc-abcdefgh123"
source = "QuiNovas/vpc-peering/aws"
version = "3.0.1"
}
```

## Authors

Module managed by Quinovas (https://github.com/QuiNovas)
Expand Down

0 comments on commit 430df09

Please sign in to comment.