8 lines
146 B
Terraform
8 lines
146 B
Terraform
|
output "rule_arn" {
|
||
|
value = "${aws_cloudwatch_event_rule.foo.arn}"
|
||
|
}
|
||
|
|
||
|
output "kinesis_stream_arn" {
|
||
|
value = "${aws_kinesis_stream.foo.arn}"
|
||
|
}
|