Skip to content

Commit

Permalink
Updated sample (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomArcherMsft authored Oct 11, 2023
1 parent fd8b296 commit c607e8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 1 addition & 3 deletions quickstart/101-resource-group/providers.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
terraform {
required_version = ">=0.12"

required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~>2.0"
version = "~>3.0"
}
random = {
source = "hashicorp/random"
Expand Down
2 changes: 2 additions & 0 deletions quickstart/101-resource-group/variables.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
variable "resource_group_location" {
type = string
default = "eastus"
description = "Location of the resource group."
}

variable "resource_group_name_prefix" {
type = string
default = "rg"
description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
}

0 comments on commit c607e8d

Please sign in to comment.