-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmain.tf
More file actions
21 lines (16 loc) · 649 Bytes
/
Copy pathmain.tf
File metadata and controls
21 lines (16 loc) · 649 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# ----
# DATA
# ----
data "azuread_client_config" "current" {}
data "azurerm_api_management" "main" {
name = var.api_management_name
resource_group_name = var.api_management_resource_group_name
}
data "azurerm_application_insights" "main" {
count = var.application_insights_name != null && var.application_insights_resource_group_name != null ? 1 : 0
name = var.application_insights_name
resource_group_name = var.api_management_resource_group_name
}
# ------------------------------------------------
# Other resources are placed in seperated TF-files
# ------------------------------------------------