forked from airbnb/streamalert
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Terraform 0.11.X, Cloudwatch Log Output, Firehose Bug Fixes (airbnb#724)
* [outputs] cloudwatch-log-output * [rule processor] resolve airbnb#708 - firehose record size limit bug * [tf] upgrade tf and provider to 0.11.7/1.17.0 * [firehose] reset firehose client on backoff, add tests for functionality
- Loading branch information
Showing
8 changed files
with
107 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
// Defined only if the Lambda is in a VPC | ||
output "function_vpc_arn" { | ||
value = "${aws_lambda_function.function_vpc.arn}" | ||
value = "${join(" ", aws_lambda_function.function_vpc.*.arn)}" | ||
} | ||
|
||
// Defined only if the Lambda is NOT in a VPC | ||
output "function_no_vpc_arn" { | ||
value = "${aws_lambda_function.function_no_vpc.arn}" | ||
value = "${join(" ", aws_lambda_function.function_no_vpc.*.arn)}" | ||
} | ||
|
||
output "role_arn" { | ||
value = "${aws_iam_role.role.arn}" | ||
value = "${aws_iam_role.role.0.arn}" | ||
} | ||
|
||
output "role_id" { | ||
value = "${aws_iam_role.role.id}" | ||
value = "${aws_iam_role.role.0.id}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters