-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathoutputs.tf
36 lines (30 loc) · 1.3 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
output "data_factory_id" {
description = "Data factory id"
value = azurerm_data_factory.main_data_factory.id
}
output "data_factory_name" {
description = "Data factory name"
value = azurerm_data_factory.main_data_factory.name
}
output "data_factory_managed_identity" {
description = "Type of managed identity"
value = azurerm_data_factory.main_data_factory.identity
}
output "data_factory_integration_runtime_id" {
description = "Data factory integration runtime id"
value = local.integration_runtime_id
}
output "data_factory_integration_runtime_type" {
description = "Data factory integration runtime type"
value = var.integration_runtime_type
}
output "data_factory_self_hosted_integration_runtime_primary_authorization_key" {
description = "The self hosted integration runtime primary authentication key"
value = one(azurerm_data_factory_integration_runtime_self_hosted.integration_runtime[*].primary_authorization_key)
sensitive = true
}
output "data_factory_self_hosted_integration_runtime_secondary_authorization_key" {
description = "The self hosted integration runtime secondary authentication key"
value = one(azurerm_data_factory_integration_runtime_self_hosted.integration_runtime[*].secondary_authorization_key)
sensitive = true
}