-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathoutput.tf
74 lines (60 loc) · 1.83 KB
/
output.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
output "vpc_id" {
description = "The ID of the VPC"
value = module.vpc.vpc_id
}
output "vpc_cidr_block" {
description = "The CIDR block of VPC"
value = module.vpc.vpc_cidr_block
}
output "public_subnets" {
description = "List of IDs of Public Subnets"
value = module.vpc.public_subnets
}
output "private_subnets" {
description = "List of IDs of Private Subnets"
value = module.vpc.private_subnets
}
output "database_subnets" {
description = "List of IDs of Database Subnets"
value = module.vpc.database_subnets
}
output "intra_subnets" {
description = "List of IDs of Intra Subnets"
value = module.vpc.intra_subnets
}
output "vpn_host_public_ip" {
description = "Public IP Adress of VPN Server"
value = module.vpc.vpn_host_public_ip
}
output "vpn_security_group" {
description = "Security Group ID of VPN Server"
value = module.vpc.vpn_security_group
}
output "cluster_name" {
description = "EKS 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_issuer_url" {
description = "The URL on the EKS cluster for the OpenID Connect identity provider"
value = module.eks.cluster_oidc_issuer_url
}
output "worker_iam_role_arn" {
description = "ARN of the EKS Worker Role"
value = module.eks.worker_iam_role_arn
}
output "worker_iam_role_name" {
description = "The name of the EKS Worker IAM role"
value = module.eks.worker_iam_role_name
}
output "kms_policy_arn" {
description = "ARN of KMS policy"
value = module.eks.kms_policy_arn
}