Skip to content

Commit

Permalink
Adding empty tags to resource group
Browse files Browse the repository at this point in the history
Adding empty tags to resource group to avoid message about external change in the challenge ("Test and Repair") that illustrates that Terraform is idempotent. User should see "No changes" without warning.
  • Loading branch information
rberlind authored Aug 16, 2021
1 parent bf8d9ac commit 6bf0c4b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions exercises/main.tf.start
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ provider "azurerm" {
resource "azurerm_resource_group" "myresourcegroup" {
name = "${var.prefix}-workshop"
location = var.location

tags = {}
}

# resource "azurerm_virtual_network" "vnet" {
Expand Down

0 comments on commit 6bf0c4b

Please sign in to comment.