generated from libre-devops/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
24 lines (20 loc) · 964 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
output "aci_id" {
value = azurerm_container_group.aci.id
description = "The id of the container instance"
}
output "aci_name" {
value = azurerm_container_group.aci.name
description = "The name of the Azure container instance"
}
output "aci_network_profile_interface" {
value = var.vnet_integration_enabled && var.use_legacy_network_profile == true && var.os_type == "Linux" ? azurerm_network_profile.net_prof.0.container_network_interface : null
description = "The interface block"
}
output "aci_network_profile_interface_ids" {
value = var.vnet_integration_enabled && var.use_legacy_network_profile == true && var.os_type == "Linux" ? azurerm_network_profile.net_prof.0.container_network_interface_ids : null
description = "The interface Ids"
}
output "aci_principal_id" {
value = azurerm_container_group.aci.identity[0].principal_id
description = "Client ID of system assigned managed identity if created"
}