Skip to content

Commit a0e21be

Browse files
committed
Various updates
1 parent 1ed6fdd commit a0e21be

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

examples/virtual-network-with-multi-peering/main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ resource "azurerm_resource_group" "rg" {
33
location = "West Europe"
44
}
55

6-
76
resource "azurerm_virtual_network" "vnet1" {
87
name = "virtual-network-1"
98
resource_group_name = azurerm_resource_group.rg.name

outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
output peerings {
1+
output "peerings" {
22
value = { for peering in azurerm_virtual_network_peering.peering : peering.name => peering }
33
description = "Blocks containing configuration of each peering."
4-
/*module.MODULE_NAME.peering["PEERING_NAME"].id*/
4+
# module.MODULE_NAME.peering["PEERING_NAME"].id
55
}

testing/pull_request/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
azurerm = {
55
source = "hashicorp/azurerm"
6-
version = "=2.36.0"
6+
version = "=2.0.0"
77
}
88
}
99
}

testing/release/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
azurerm = {
55
source = "hashicorp/azurerm"
6-
version = "=2.36.0"
6+
version = "=2.0.0"
77
}
88
}
99
}

variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
variable resource_group_name {
1+
variable "resource_group_name" {
22
type = string
33
description = "The name of the resource group in which to create the virtual network peering."
44
}
55

6-
variable virtual_network_name {
6+
variable "virtual_network_name" {
77
type = string
88
description = "The full Azure resource ID of the remote virtual network."
99
}
1010

11-
variable peerings {
11+
variable "peerings" {
1212
type = list(map(string))
1313
description = "List containing the blocks for the configuration of the peerings."
1414
/*

0 commit comments

Comments
 (0)