Skip to content

Commit ac41de9

Browse files
author
Rodrigo Monte
authored
Apply suggestions from code review
1 parent a4dc127 commit ac41de9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ output "kinesis_stream_iam_policy_read_only_arn" {
2020

2121
output "kinesis_stream_iam_policy_write_only_arn" {
2222
description = "The IAM Policy (ARN) write only of the Stream"
23-
value = concat(aws_iam_policy.read-only.*.arn, [""])[0]
23+
value = concat(aws_iam_policy.write-only.*.arn, [""])[0]
2424
}
2525

2626
output "kinesis_stream_iam_policy_admin_arn" {
2727
description = "The IAM Policy (ARN) admin of the Stream"
28-
value = concat(aws_iam_policy.read-only.*.arn, [""])[0]
28+
value = concat(aws_iam_policy.admin-only.*.arn, [""])[0]
2929
}

0 commit comments

Comments
 (0)