-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
85 lines (68 loc) · 2.45 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
output "region" {
description = "AWS region"
value = var.region
}
output "cluster_name" {
description = "Kubernetes Cluster Name"
value = module.eks.cluster_name
}
output "cluster_endpoint" {
description = "Endpoint for EKS control plane"
value = module.eks.cluster_endpoint
}
output "cluster_security_group_id" {
description = "Security group ids attached to the cluster control plane"
value = module.eks.cluster_security_group_id
}
output "cluster_oidc_id" {
description = "OIDC ID for the EKS cluster"
value = module.eks.oidc_provider
}
output "cluster_oidc_arn" {
description = "OIDC ID ARN for the EKS cluster"
value = module.eks.oidc_provider_arn
}
output "ebs_csi_driver_service_account_iam_role_arn" {
description = "AWS IAM ARN for the ebs-csi-controller-sa SA"
value = aws_iam_role.aws-eks-ebs-csi-driver-role.arn
}
output "efs_csi_driver_service_account_iam_role_arn" {
description = "AWS IAM ARN for the efs-csi-controller-sa SA"
value = aws_iam_role.aws-eks-efs-csi-driver-role.arn
}
output "efs_fs_id" {
description = "AWS EFS filesystem ID"
value = aws_efs_file_system.efs-0.id
}
output "efs_fs_mount_targets" {
description = "AWS EFS filesystem mount targets"
value = aws_efs_file_system.efs-0.number_of_mount_targets
}
output "ack_s3_controller_service_account_iam_role_arn" {
description = "AWS IAM ARN for the ack-s3-controller SA"
value = aws_iam_role.aws-eks-ack-s3-controller-role.arn
}
output "ack_rds_controller_service_account_iam_role_arn" {
description = "AWS IAM ARN for the ack-rds-controller SA"
value = aws_iam_role.aws-eks-ack-rds-controller-role.arn
}
output "ack_rds_database_subnet_id_1" {
description = "Database subnet ID 1 for RDS"
value = data.aws_subnets.database.ids[0]
}
output "ack_rds_database_subnet_id_2" {
description = "Database subnet ID 2 for RDS"
value = data.aws_subnets.database.ids[1]
}
output "ack_rds_database_subnet_group_name" {
description = "Database subnet group name"
value = module.vpc.database_subnet_group_name
}
output "aws_load_balancer_service_account_iam_role_arn" {
description = "AWS IAM ARN for the aws-load-balancer-controller SA"
value = aws_iam_role.aws-load-balancer-controller-role.arn
}
output "studio_service_account_iam_role_arn" {
description = "AWS IAM ARN for the viewspot-studio SA"
value = aws_iam_role.aws-eks-viewspot-studio-sa-role.arn
}