-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdatasources.tf
21 lines (21 loc) · 920 Bytes
/
datasources.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//data "template_file" "Usage_outputs" {
// count = "${length(module.container_registry.fqdn) > 0 ? 1 : 0 }"
// template = "${file("${path.module}/templates/usage.tpl")}"
//
// vars {
// cluster_name = "${azurerm_kubernetes_cluster.aks_managed_cluster.name}"
// cluster_resource_group = "${azurerm_kubernetes_cluster.aks_managed_cluster.resource_group_name}"
// acr_host = "${module.container_registry.fqdn[0]}"
// }
//}
//
//data "template_file" "Usage_outputs_own_acr" {
// count = "${length(module.container_registry.fqdn) == 0 ? 1 : 0 }"
// template = "${file("${path.module}/templates/usage.tpl")}"
//
// vars {
// cluster_name = "${azurerm_kubernetes_cluster.aks_managed_cluster.name}"
// cluster_resource_group = "${azurerm_kubernetes_cluster.aks_managed_cluster.resource_group_name}"
// acr_host = "your_container_registry_host"
// }
//}