-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
29 lines (24 loc) · 1.01 KB
/
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
output "cluster_manager_role_arn" {
description = "The ARN of the Cluster Manager IAM Role"
value = join("", module.iam_role_cluster_manager.*.iam_role_arn)
}
output "cluster_manager_role_name" {
description = "The name of the Cluster Manager IAM Role"
value = join("", module.iam_role_cluster_manager.*.iam_role_name)
}
output "dns_zone_manager_role_arn" {
description = "The ARN of the DNS Zone Manager IAM Role"
value = join("", module.iam_role_dns_zone_manager.*.iam_role_arn)
}
output "dns_zone_manager_role_name" {
description = "The name of the DNS Zone Manager IAM Role"
value = join("", module.iam_role_dns_zone_manager.*.iam_role_name)
}
output "network_manager_role_arn" {
description = "The ARN of the Network Manager IAM Role"
value = join("", module.iam_role_network_manager.*.iam_role_arn)
}
output "network_manager_role_name" {
description = "The name of the Network Manager IAM Role"
value = join("", module.iam_role_network_manager.*.iam_role_name)
}