-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.tf
More file actions
22 lines (17 loc) · 674 Bytes
/
data.tf
File metadata and controls
22 lines (17 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
data "azurerm_client_config" "current" {}
data "azurerm_subscription" "current" {}
data "azurerm_location" "current" {
location = var.location
}
data "azurerm_virtual_network" "virtual_network" {
name = local.virtual_network.name
resource_group_name = local.virtual_network.resource_group_name
}
data "azurerm_network_security_group" "network_security_group" {
name = local.network_security_group.name
resource_group_name = local.network_security_group.resource_group_name
}
data "azurerm_route_table" "route_table" {
name = local.route_table.name
resource_group_name = local.route_table.resource_group_name
}