-
Notifications
You must be signed in to change notification settings - Fork 21
/
outputs.tf
37 lines (30 loc) · 1.11 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
# ------------------------------------------------------------------------------
# Output
# ------------------------------------------------------------------------------
output "used_container" {
description = "Used container for creating the endpoint"
value = data.aws_sagemaker_prebuilt_ecr_image.deploy_image.registry_path
}
output "iam_role" {
description = "IAM role used in the endpoint"
value = local.role_arn
}
output "sagemaker_model" {
description = "created Amazon SageMaker model resource"
value = local.sagemaker_model
}
output "sagemaker_endpoint_configuration" {
description = "created Amazon SageMaker endpoint configuration resource"
value = aws_sagemaker_endpoint_configuration.huggingface
}
output "sagemaker_endpoint" {
description = "created Amazon SageMaker endpoint resource"
value = aws_sagemaker_endpoint.huggingface
}
output "sagemaker_endpoint_name" {
description = "Name of the created Amazon SageMaker endpoint, used for invoking the endpoint, with sdks"
value = aws_sagemaker_endpoint.huggingface.name
}
output "tags" {
value = var.tags
}