-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
49 lines (40 loc) · 1.9 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
output "LAUNCHPAD_AZURE_CLIENT_ID" {
value = azurerm_user_assigned_identity.this.client_id
description = "The client ID of the Azure user identity assigned to the Launchpad."
}
output "LAUNCHPAD_AZURE_STORAGE_ACCOUNT_NAME" {
value = azurerm_storage_account.this.name
description = "The storage account name used by the Launchpad for the Terraform state backend."
}
output "LAUNCHPAD_AZURE_TENANT_ID" {
value = azurerm_user_assigned_identity.this.tenant_id
description = "The tenant ID of the Azure user identity assigned to the Launchpad"
}
output "key_vault_private_endpoint_private_ip_address" {
value = one(azurerm_private_endpoint.key_vault.private_service_connection[*].private_ip_address)
description = "The private IP address of the private endpoint used by the Key Vault."
}
output "network_security_group_id" {
value = azurerm_network_security_group.this.id
description = "The ID of the Azure Network Security Group (NSG) associated with the Launchpad."
}
output "network_security_group_name" {
value = azurerm_network_security_group.this.name
description = "The name of the Azure Network Security Group (NSG) associated with the Launchpad."
}
output "subnet_id" {
value = azurerm_subnet.this.id
description = "The ID of the subnet within the Virtual Network, associated with the Launchpad production environment."
}
output "subnet_name" {
value = azurerm_subnet.this.name
description = "The name of the subnet within the Virtual Network, associated with the Launchpad production environment."
}
output "virtual_network_id" {
value = azurerm_virtual_network.this.id
description = "The ID of the Azure Virtual Network (VNet) associated with the Launchpad."
}
output "virtual_network_name" {
value = azurerm_virtual_network.this.name
description = "The name of the Azure Virtual Network (VNet) associated with the Launchpad."
}