-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
37 lines (30 loc) · 903 Bytes
/
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
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
output "ecr_repository_name" {
description = "ECR Repository name"
value = aws_ecr_repository.demoapp.name
}
output "ecr_repository_url" {
description = "ECR Repository URL"
value = aws_ecr_repository.demoapp.repository_url
}
output "docker_image_name" {
description = "Docker image name"
value = var.docker_iamge_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 "region" {
description = "AWS region"
value = var.aws_region
}
output "cluster_name" {
description = "Kubernetes Cluster Name"
value = module.eks.cluster_name
}