Skip to content

Commit 15c4d6e

Browse files
committed
fix missing var
1 parent 9b13ee5 commit 15c4d6e

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# Setup providers
22
provider "azapi" {
3+
subscription_id = var.subscription_id
34
}

samples/microsoft/infrastructure-setup-terraform/00-basic/code/variables.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@ variable "location" {
22
description = "The name of the location to provision the resources to"
33
type = string
44
}
5+
6+
variable "subscription_id" {
7+
type = string
8+
}

0 commit comments

Comments
 (0)