-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathoutputs.tf
More file actions
52 lines (43 loc) · 1.66 KB
/
outputs.tf
File metadata and controls
52 lines (43 loc) · 1.66 KB
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
# Workspace
output "workspace_url" {
description = "The workspace URL which is of the format '{workspaceId}.{random}.gcp.databricks.com'"
value = databricks_mws_workspaces.databricks_workspace.workspace_url
}
output "workspace_id" {
description = "The Databricks workspace ID"
value = databricks_mws_workspaces.databricks_workspace.workspace_id
}
# Network
output "spoke_vpc_id" {
description = "The ID of the Spoke VPC network"
value = google_compute_network.spoke_vpc.id
}
output "hub_vpc_id" {
description = "The ID of the Hub VPC network"
value = google_compute_network.hub_vpc.id
}
output "spoke_subnetwork_id" {
description = "The ID of the primary Spoke subnet"
value = google_compute_subnetwork.spoke_subnetwork.id
}
output "psc_subnetwork_id" {
description = "The ID of the PSC subnet within the Spoke VPC"
value = google_compute_subnetwork.psc_subnetwork.id
}
output "network_id" {
description = "The Databricks MWS network configuration ID"
value = databricks_mws_networks.databricks_network.network_id
}
# PSC Endpoints
output "backend_psc_endpoint_ip" {
description = "The IP address of the backend (SCC) PSC endpoint"
value = google_compute_address.backend_pe_ip_address.address
}
output "spoke_frontend_psc_endpoint_ip" {
description = "The IP address of the workspace frontend PSC endpoint in the Spoke VPC"
value = google_compute_address.spoke_frontend_pe_ip_address.address
}
output "hub_frontend_psc_endpoint_ip" {
description = "The IP address of the workspace frontend PSC endpoint in the Hub VPC"
value = google_compute_address.hub_frontend_pe_ip_address.address
}