forked from Young-ook/terraform-aws-spinnaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
51 lines (41 loc) · 1.24 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
# output variables
output "cluster_name" {
value = local.name
description = "The name of eks cluster to run spinnaker pods"
}
output "eks_endpoint" {
value = aws_eks_cluster.eks.endpoint
description = "The enpoint of eks cluster"
}
output "eks_sg" {
value = aws_security_group.eks.id
description = "The id of security group for master nodes"
}
output "nodes_sg" {
value = aws_security_group.nodes.id
description = "The id of security group for worker nodes (node pool)"
}
output "bucket_name" {
value = local.name
description = "The name of s3 bucket to store pipelines and applications of spinnaker"
}
output "vpc_id" {
value = aws_vpc.vpc.id
description = "The Id. of new VPC"
}
output "public_subnets" {
value = aws_subnet.public.*.id
description = "The Id. list of generated public subnets"
}
output "private_subnets" {
value = aws_subnet.private.*.id
description = "The Id. list of generated private subnets"
}
output "hosted_zone_id" {
value = aws_route53_zone.vpc.zone_id
description = "The hosted zone Id. of internal domain in Route 53"
}
output "db_endpoint" {
value = aws_route53_record.db[0].name
description = "The enpoint of aurora mysql cluster"
}