This repository was archived by the owner on Aug 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoutputs.tf
More file actions
65 lines (60 loc) · 2.62 KB
/
outputs.tf
File metadata and controls
65 lines (60 loc) · 2.62 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
output "project" {
description = "azuredevops_project results"
value = {
for project in keys(azuredevops_project.project) :
project => {
id = azuredevops_project.project[project].id
process_template_id = azuredevops_project.project[project].process_template_id
}
}
}
output "serviceendpoint_azurerm" {
description = "azuredevops_serviceendpoint_azurerm results"
value = {
for serviceendpoint in keys(azuredevops_serviceendpoint_azurerm.serviceendpoint_azurerm) :
serviceendpoint => {
id = azuredevops_serviceendpoint_azurerm.serviceendpoint_azurerm[serviceendpoint].id
service_endpoint_name = azuredevops_serviceendpoint_azurerm.serviceendpoint_azurerm[serviceendpoint].service_endpoint_name
}
}
}
output "serviceendpoint_azurecr" {
description = "azuredevops_serviceendpoint_azurecr results"
value = {
for serviceendpoint in keys(azuredevops_serviceendpoint_azurecr.serviceendpoint_azurecr) :
serviceendpoint => {
id = azuredevops_serviceendpoint_azurecr.serviceendpoint_azurecr[serviceendpoint].id
service_endpoint_name = azuredevops_serviceendpoint_azurecr.serviceendpoint_azurecr[serviceendpoint].service_endpoint_name
}
}
}
output "serviceendpoint_dockerregistry" {
description = "azuredevops_serviceendpoint_dockerregistry results"
value = {
for serviceendpoint in keys(azuredevops_serviceendpoint_dockerregistry.serviceendpoint_dockerregistry) :
serviceendpoint => {
id = azuredevops_serviceendpoint_dockerregistry.serviceendpoint_dockerregistry[serviceendpoint].id
service_endpoint_name = azuredevops_serviceendpoint_dockerregistry.serviceendpoint_dockerregistry[serviceendpoint].service_endpoint_name
}
}
}
output "serviceendpoint_generic_git" {
description = "azuredevops_serviceendpoint_generic_git results"
value = {
for serviceendpoint in keys(azuredevops_serviceendpoint_generic_git.serviceendpoint_generic_git) :
serviceendpoint => {
id = azuredevops_serviceendpoint_generic_git.serviceendpoint_generic_git[serviceendpoint].id
service_endpoint_name = azuredevops_serviceendpoint_generic_git.serviceendpoint_generic_git[serviceendpoint].service_endpoint_name
}
}
}
output "variable_group" {
description = "azuredevops_variable_group results"
value = {
for variable_group in keys(azuredevops_variable_group.variable_group) :
variable_group => {
id = azuredevops_variable_group.variable_group[variable_group].id
name = azuredevops_variable_group.variable_group[variable_group].name
}
}
}