We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4dc127 commit ac41de9Copy full SHA for ac41de9
outputs.tf
@@ -20,10 +20,10 @@ output "kinesis_stream_iam_policy_read_only_arn" {
20
21
output "kinesis_stream_iam_policy_write_only_arn" {
22
description = "The IAM Policy (ARN) write only of the Stream"
23
- value = concat(aws_iam_policy.read-only.*.arn, [""])[0]
+ value = concat(aws_iam_policy.write-only.*.arn, [""])[0]
24
}
25
26
output "kinesis_stream_iam_policy_admin_arn" {
27
description = "The IAM Policy (ARN) admin of the Stream"
28
+ value = concat(aws_iam_policy.admin-only.*.arn, [""])[0]
29
0 commit comments