Merge pull request #2969 from alex/patch-1

Fixed indentation in a code sample
This commit is contained in:
Radek Simko 2015-08-11 09:27:12 +01:00
commit 8df1decd71
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ resource "aws_flow_log" "test_flow_log" {
# log_group_name needs to exist before hand
# until we have a CloudWatch Log Group Resource
log_group_name = "tf-test-log-group"
iam_role_arn = "${aws_iam_role.test_role.arn}"
iam_role_arn = "${aws_iam_role.test_role.arn}"
vpc_id = "${aws_vpc.default.id}"
traffic_type = "ALL"
}