-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdata.tf
More file actions
29 lines (20 loc) · 809 Bytes
/
data.tf
File metadata and controls
29 lines (20 loc) · 809 Bytes
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
data "azurerm_client_config" "current" {}
data "azurerm_subscription" "current" {}
data "azuread_group" "postgres_sql_admin_group" {
display_name = var.postgres_sql_admin_group
}
data "azurerm_private_dns_zone" "storage" {
provider = azurerm.hub
name = "privatelink.blob.core.windows.net"
resource_group_name = "rg-hub-${var.hub}-uks-private-dns-zones"
}
data "azurerm_private_dns_zone" "storage-account-blob" {
provider = azurerm.hub
name = "privatelink.blob.core.windows.net"
resource_group_name = "rg-hub-${var.hub}-uks-private-dns-zones"
}
data "azurerm_private_dns_zone" "storage-account-queue" {
provider = azurerm.hub
name = "privatelink.queue.core.windows.net"
resource_group_name = "rg-hub-${var.hub}-uks-private-dns-zones"
}