forked from SebastianUA/terraform-aws-sagemaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
208 lines (175 loc) · 8.88 KB
/
Copy pathoutputs.tf
File metadata and controls
208 lines (175 loc) · 8.88 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
#---------------------------------------------------
# AWS Gagemaker model
#---------------------------------------------------
output "sagemaker_model_id" {
description = "The ID of sagemaker model"
value = element(concat(aws_sagemaker_model.sagemaker_model.*.id, [""]), 0)
}
output "sagemaker_model_name" {
description = "The name of the model."
value = element(concat(aws_sagemaker_model.sagemaker_model.*.name, [""]), 0)
}
output "sagemaker_model_arn" {
description = "The Amazon Resource Name (ARN) assigned by AWS to this model."
value = element(concat(aws_sagemaker_model.sagemaker_model.*.arn, [""]), 0)
}
#---------------------------------------------------
# AWS Sagemaker endpoint configuration
#---------------------------------------------------
output "sagemaker_endpoint_configuration_id" {
description = "The ID of sagemaker endpoint configuration"
value = element(concat(aws_sagemaker_endpoint_configuration.sagemaker_endpoint_configuration.*.id, [""]), 0)
}
output "sagemaker_endpoint_configuration_arn" {
description = "The Amazon Resource Name (ARN) assigned by AWS to this endpoint configuration."
value = element(concat(aws_sagemaker_endpoint_configuration.sagemaker_endpoint_configuration.*.arn, [""]), 0)
}
output "sagemaker_endpoint_configuration_name" {
description = "The name of the endpoint configuration."
value = element(concat(aws_sagemaker_endpoint_configuration.sagemaker_endpoint_configuration.*.name, [""]), 0)
}
#---------------------------------------------------
# AWS Sagemaker endpoint
#---------------------------------------------------
output "sagemaker_endpoint_id" {
description = "The ID of sagemaker endpoint"
value = element(concat(aws_sagemaker_endpoint.sagemaker_endpoint.*.id, [""]), 0)
}
output "sagemaker_endpoint_arn" {
description = "The Amazon Resource Name (ARN) assigned by AWS to this endpoint."
value = element(concat(aws_sagemaker_endpoint.sagemaker_endpoint.*.arn, [""]), 0)
}
output "sagemaker_endpoint_name" {
description = "The name of the endpoint."
value = element(concat(aws_sagemaker_endpoint.sagemaker_endpoint.*.name, [""]), 0)
}
#---------------------------------------------------
# AWS sagemaker notebook instance lifecycle configuration
#---------------------------------------------------
output "sagemaker_notebook_instance_lifecycle_configuration_id" {
description = "The ID of notebook instance lifecycle configuration"
value = element(concat(aws_sagemaker_notebook_instance_lifecycle_configuration.sagemaker_notebook_instance_lifecycle_configuration.*.id, [""]), 0)
}
output "sagemaker_notebook_instance_lifecycle_configuration_arn" {
description = "The Amazon Resource Name (ARN) assigned by AWS to this lifecycle configuration."
value = element(concat(aws_sagemaker_notebook_instance_lifecycle_configuration.sagemaker_notebook_instance_lifecycle_configuration.*.arn, [""]), 0)
}
#---------------------------------------------------
# AWS Sagemaker notebook instance
#---------------------------------------------------
output "sagemaker_notebook_instance_id" {
description = "The name of the notebook instance."
value = element(concat(aws_sagemaker_notebook_instance.sagemaker_notebook_instance.*.id, [""]), 0)
}
output "sagemaker_notebook_instance_arn" {
description = "The Amazon Resource Name (ARN) assigned by AWS to this notebook instance."
value = element(concat(aws_sagemaker_notebook_instance.sagemaker_notebook_instance.*.id, [""]), 0)
}
#---------------------------------------------------
# AWS Sagemaker user profile
#---------------------------------------------------
output "sagemaker_user_profile_id" {
description = "The user profile Amazon Resource Name (ARN)."
value = element(concat(aws_sagemaker_user_profile.sagemaker_user_profile.*.id, [""]), 0)
}
output "sagemaker_user_profile_arn" {
description = "The user profile Amazon Resource Name (ARN)."
value = element(concat(aws_sagemaker_user_profile.sagemaker_user_profile.*.arn, [""]), 0)
}
output "sagemaker_user_profile_home_efs_file_system_uid" {
description = "The ID of the user's profile in the Amazon Elastic File System (EFS) volume."
value = element(concat(aws_sagemaker_user_profile.sagemaker_user_profile.*.home_efs_file_system_uid, [""]), 0)
}
#---------------------------------------------------
# AWS Sagemaker domain
#---------------------------------------------------
output "sagemaker_domain_id" {
description = "The ID of the Domain."
value = element(concat(aws_sagemaker_domain.sagemaker_domain.*.id, [""]), 0)
}
output "sagemaker_domain_arn" {
description = "The Amazon Resource Name (ARN) assigned by AWS to this Domain."
value = element(concat(aws_sagemaker_domain.sagemaker_domain.*.arn, [""]), 0)
}
output "sagemaker_domain_url" {
description = "The domain's URL."
value = element(concat(aws_sagemaker_domain.sagemaker_domain.*.url, [""]), 0)
}
output "sagemaker_domain_single_sign_on_managed_application_instance_id" {
description = "The SSO managed application instance ID."
value = element(concat(aws_sagemaker_domain.sagemaker_domain.*.single_sign_on_managed_application_instance_id, [""]), 0)
}
output "sagemaker_domain_home_efs_file_system_id" {
description = "The ID of the Amazon Elastic File System (EFS) managed by this Domain."
value = element(concat(aws_sagemaker_domain.sagemaker_domain.*.home_efs_file_system_id, [""]), 0)
}
#---------------------------------------------------
# AWS sagemaker model package group
#---------------------------------------------------
output "sagemaker_model_package_group_id" {
description = "The name of the Model Package Group."
value = element(concat(aws_sagemaker_model_package_group.sagemaker_model_package_group.*.id, [""]), 0)
}
output "sagemaker_model_package_group_arn" {
description = "The Amazon Resource Name (ARN) assigned by AWS to this Model Package Group."
value = element(concat(aws_sagemaker_model_package_group.sagemaker_model_package_group.*.arn, [""]), 0)
}
#---------------------------------------------------
# AWS sagemaker image
#---------------------------------------------------
output "sagemaker_image_id" {
description = "The name of the Image."
value = element(concat(aws_sagemaker_image.sagemaker_image.*.id, [""]), 0)
}
output "sagemaker_image_arn" {
description = "The Amazon Resource Name (ARN) assigned by AWS to this Image."
value = element(concat(aws_sagemaker_image.sagemaker_image.*.arn, [""]), 0)
}
#---------------------------------------------------
# AWS sagemaker image version
#---------------------------------------------------
output "sagemaker_image_version_id" {
description = "The name of the Image version."
value = element(concat(aws_sagemaker_image_version.sagemaker_image_version.*.id, [""]), 0)
}
output "sagemaker_image_version_arn" {
description = "The Amazon Resource Name (ARN) assigned by AWS to this Image version."
value = element(concat(aws_sagemaker_image_version.sagemaker_image_version.*.arn, [""]), 0)
}
#---------------------------------------------------
# AWS sagemaker feature group
#---------------------------------------------------
output "sagemaker_feature_group_id" {
description = "The name of the feature group."
value = element(concat(aws_sagemaker_feature_group.sagemaker_feature_group.*.id, [""]), 0)
}
output "sagemaker_feature_group_arn" {
description = "The Amazon Resource Name (ARN) assigned by AWS to this feature_group."
value = element(concat(aws_sagemaker_feature_group.sagemaker_feature_group.*.arn, [""]), 0)
}
output "sagemaker_feature_group_name" {
description = "The name of the Feature Group."
value = element(concat(aws_sagemaker_feature_group.sagemaker_feature_group.*.name, [""]), 0)
}
#---------------------------------------------------
# AWS sagemaker code repository
#---------------------------------------------------
output "sagemaker_code_repository_id" {
description = "The name of the Code Repository."
value = element(concat(aws_sagemaker_code_repository.sagemaker_code_repository.*.id, [""]), 0)
}
output "sagemaker_code_repository_arn" {
description = "The Amazon Resource Name (ARN) assigned by AWS to this Code Repository."
value = element(concat(aws_sagemaker_code_repository.sagemaker_code_repository.*.arn, [""]), 0)
}
#---------------------------------------------------
# AWS sagemaker app image config
#---------------------------------------------------
output "sagemaker_app_image_config_id" {
description = "The name of the app image config."
value = element(concat(aws_sagemaker_app_image_config.sagemaker_app_image_config.*.id, [""]), 0)
}
output "sagemaker_app_image_config_arn" {
description = "The Amazon Resource Name (ARN) assigned by AWS to this App Image Config."
value = element(concat(aws_sagemaker_app_image_config.sagemaker_app_image_config.*.arn, [""]), 0)
}