generated from Azure/terraform-azurerm-avm-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathoutputs.tf
60 lines (49 loc) · 2.6 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
output "custom_domain_verification_id" {
description = "The custom domain verification ID of the Container Apps Managed Environment."
sensitive = true
value = try(azapi_resource.this_environment.output.properties.customDomainConfiguration.customDomainVerificationId, null)
}
output "dapr_component_resource_ids" {
description = "A map of dapr components connected to this environment. The map key is the supplied input to var.dapr_components. The map value is the azurerm-formatted version of the entire dapr_components resource."
value = local.dapr_component_resource_ids
}
output "default_domain" {
description = "The default domain of the Container Apps Managed Environment."
value = azapi_resource.this_environment.output.properties.defaultDomain
}
output "docker_bridge_cidr" {
description = "The Docker bridge CIDR of the Container Apps Managed Environment."
value = try(azapi_resource.this_environment.output.properties.vnetConfiguration.dockerBridgeCidr, null)
}
output "id" {
description = "The ID of the container app management environment resource."
value = azapi_resource.this_environment.id
}
output "infrastructure_resource_group" {
description = "The infrastructure resource group of the Container Apps Managed Environment."
value = try(azapi_resource.this_environment.output.properties.infrastructureResourceGroup, null)
}
output "name" {
description = "The name of the resource"
value = azapi_resource.this_environment.name
}
output "platform_reserved_cidr" {
description = "The platform reserved CIDR of the Container Apps Managed Environment."
value = try(azapi_resource.this_environment.output.properties.vnetConfiguration.platformReservedCidr, null)
}
output "platform_reserved_dns_ip_address" {
description = "The platform reserved DNS IP address of the Container Apps Managed Environment."
value = try(azapi_resource.this_environment.output.properties.vnetConfiguration.platformReservedDnsIP, null)
}
output "resource_id" {
description = "The ID of the container app management environment resource."
value = azapi_resource.this_environment.id
}
output "static_ip_address" {
description = "The static IP address of the Container Apps Managed Environment."
value = azapi_resource.this_environment.output.properties.staticIp
}
output "storage_resource_ids" {
description = "A map of storage shares connected to this environment. The map key is the supplied input to var.storages. The map value is the azurerm-formatted version of the entire storage shares resource."
value = local.storage_resource_ids
}