Skip to content
Snippets Groups Projects
Unverified Commit 146c94f7 authored by Philip Dubois's avatar Philip Dubois Committed by GitHub
Browse files

Fix provider syntax for vpc_peering (#30)

parent a12f7123
Branches master
No related tags found
No related merge requests found
......@@ -308,7 +308,7 @@ No modules.
| <a name="input_target_name"></a> [target_name](#input_target_name) | Name of the target VPC | `string` | n/a | yes |
| <a name="input_target_route_table_ids"></a> [target_route_table_ids](#input_target_route_table_ids) | List of route table IDs from the target VPC that should be routable to the source VPC | `list(string)` | n/a | yes |
| <a name="input_target_vpc_id"></a> [target_vpc_id](#input_target_vpc_id) | ID of the target VPC | `string` | n/a | yes |
| <a name="input_tags"></a> [tags](#input_tags) | AWS tags to apply to the created resources | `map(string)` | <pre>{<br> "installer": "terraform",<br> "maintainer": "skyscrapers"<br>}</pre> | no |
| <a name="input_tags"></a> [tags](#input_tags) | AWS tags to apply to the created resources | `map(string)` | `{}` | no |
### Outputs
......
provider "aws" {
alias = "source"
}
provider "aws" {
alias = "target"
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
configuration_aliases = [
aws.source,
aws.target,
]
}
}
}
data "aws_vpc" "source" {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment