forked from expel-io/terraform-aws-eks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
32 lines (26 loc) · 858 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* Outputs
* -------
* This Terraform file defines the outputs for the AWS EKS cluster module.
* These outputs provide information about the resources created by the module.
*/
# IAM Role ARN
output "role_arn" {
description = "IAM Role ARN of the role for Expel to assume to access Kinesis data"
value = aws_iam_role.expel_assume_role.arn
}
# Role Session Name
output "role_session_name" {
description = "The session name Expel will use when authenticating"
value = var.expel_assume_role_session_name
}
# AWS Region
output "aws_region" {
description = "The AWS Region where the Kinesis resources exist"
value = local.region
}
#Kinesis Stream Name
output "kinesis_stream_name" {
description = "Name of the Kinesis data stream Expel will consume from"
value = aws_kinesis_stream.kinesis_data_stream.name
}