-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
32 lines (26 loc) · 1.01 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
output "azure_container_registry_admin_username" {
value = try(azurerm_container_registry.this.admin_username, null)
}
output "azure_container_registry_admin_password" {
value = try(azurerm_container_registry.this.admin_password, null)
}
output "name" {
description = "The name of the parent resource."
value = azurerm_container_registry.this.name
}
output "login_server" {
description = "The login server of the parent resource."
value = azurerm_container_registry.this.login_server
}
output "resource" {
description = "This is the full output for the resource."
value = azurerm_container_registry.this
}
output "resource_id" {
description = "The resource id for the parent resource."
value = azurerm_container_registry.this.id
}
output "system_assigned_mi_principal_id" {
description = "The system assigned managed identity principal ID of the parent resource."
value = try(azurerm_container_registry.this.identity[0].principal_id, null)
}