aws/docs: Add example of aws_alb_target_group (#8311)

This commit is contained in:
Radek Simko 2016-08-19 09:13:39 +01:00 committed by Paul Stack
parent 4c47e0dc37
commit 73f0c47915
1 changed files with 10 additions and 0 deletions

View File

@ -15,6 +15,16 @@ resources.
## Example Usage
```
resource "aws_alb_target_group" "test" {
name = "tf-example-alb-tg"
port = 80
protocol = "HTTP"
vpc_id = "${aws_vpc.main.id}"
}
resource "aws_vpc" "main" {
cidr_block = "10.0.0.0/16"
}
```
## Argument Reference