Skip to content

Commit 655170c

Browse files
committed
without_monitor
1 parent 35faad1 commit 655170c

File tree

9 files changed

+28
-1
lines changed

9 files changed

+28
-1
lines changed

examples/without_monitor/main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ resource "azurerm_subnet" "test" {
2828
name = "${random_id.prefix.hex}-sn"
2929
resource_group_name = local.resource_group.name
3030
virtual_network_name = azurerm_virtual_network.test.name
31-
enforce_private_link_endpoint_network_policies = true
3231
}
3332

3433
resource "azurerm_dns_zone" "aks_web_app_routing" {
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
resource "azurerm_subnet" "test" {
2+
enforce_private_link_endpoint_network_policies = true
3+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../without_monitor/disk_encryption_set.tf
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../without_monitor/main.tf
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module "aks_without_monitor" {
2+
source = "../../v4"
3+
rbac_aad_tenant_id = data.azurerm_client_config.current.tenant_id
4+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../without_monitor/outputs.tf
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../without_monitor/providers.tf
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
terraform {
2+
required_providers {
3+
azurerm = {
4+
source = "hashicorp/azurerm"
5+
version = "~> 4.0"
6+
}
7+
curl = {
8+
source = "anschoewe/curl"
9+
version = "1.0.2"
10+
}
11+
random = {
12+
source = "hashicorp/random"
13+
version = "3.3.2"
14+
}
15+
}
16+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../without_monitor/variables.tf

0 commit comments

Comments
 (0)