-
Notifications
You must be signed in to change notification settings - Fork 4
/
outputs.tf
41 lines (33 loc) · 1.38 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
30
31
32
33
34
35
36
37
38
39
40
41
output "account_id" {
description = "The AWS account id used for creating resources."
value = local.account_id
}
output "backup_vaults" {
description = "Backups vaults from all SIMPHERA instances."
value = flatten([for name, instance in module.simphera_instance : instance.backup_vaults])
}
output "database_identifiers" {
description = "Identifiers of the SIMPHERA and Keycloak databases from all SIMPHERA instances."
value = flatten([for name, instance in module.simphera_instance : instance.database_identifiers])
}
output "database_endpoints" {
description = "Identifiers of the SIMPHERA and Keycloak databases from all SIMPHERA instances."
value = flatten([for name, instance in module.simphera_instance : instance.database_endpoints])
}
output "s3_buckets" {
description = "S3 buckets from all SIMPHERA instances."
value = local.s3_buckets
}
output "eks_cluster_id" {
description = "Amazon EKS Cluster Name"
value = module.eks.eks_cluster_id
}
# Section below is useful when troubleshooting on pre-configured network infrastructure
#output "aws_vpc_id" {
# description = "Amazon VPC ID"
# value = data.aws_vpc.preconfigured.id
#}
#output "aws_private_subnets" {
# description = "Amazon VPC private subnets"
# value = { for s, t in data.aws_subnet.private_subnet : "zone${s}" => data.aws_subnet.private_subnet[s].id }
#}