Skip to content

Commit bd27b46

Browse files
committed
fixing random provider info
1 parent b6f52f3 commit bd27b46

File tree

4 files changed

+23
-7
lines changed

4 files changed

+23
-7
lines changed

quickstart/101-attestation-provider/providers.tf

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@ terraform {
66
source = "hashicorp/azurerm"
77
version = "~>2.0"
88
}
9+
10+
random = {
11+
source = "hashicorp/random"
12+
version = "~>3.0"
13+
}
914
}
1015
}
1116

1217
provider "azurerm" {
1318
features {}
1419
}
1520

16-
random = {
17-
source = "hashicorp/random"
18-
version = "~>3.0"
19-
}

quickstart/101-resource-group/providers.tf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ terraform {
66
source = "hashicorp/azurerm"
77
version = "~>2.0"
88
}
9+
10+
random = {
11+
source = "hashicorp/random"
12+
version = "~>3.0"
13+
}
914
}
1015
}
1116

@@ -14,6 +19,6 @@ provider "azurerm" {
1419
}
1520

1621
random = {
17-
source = "hashicorp/random"
22+
source = "hashicorp/random"
1823
version = "~>3.0"
1924
}

quickstart/201-k8s-cluster-with-tf-and-aks/providers.tf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ terraform {
66
source = "hashicorp/azurerm"
77
version = "~>3.0"
88
}
9+
10+
random = {
11+
source = "hashicorp/random"
12+
version = "~>3.0"
13+
}
914
}
1015
}
1116

@@ -14,6 +19,6 @@ provider "azurerm" {
1419
}
1520

1621
random = {
17-
source = "hashicorp/random"
22+
source = "hashicorp/random"
1823
version = "~>3.0"
1924
}

quickstart/201-mysql-fs-db/providers.tf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ terraform {
66
source = "hashicorp/azurerm"
77
version = "~>3.0"
88
}
9+
10+
random = {
11+
source = "hashicorp/random"
12+
version = "~>3.0"
13+
}
914
}
1015
}
1116

@@ -14,6 +19,6 @@ provider "azurerm" {
1419
}
1520

1621
random = {
17-
source = "hashicorp/random"
22+
source = "hashicorp/random"
1823
version = "~>3.0"
1924
}

0 commit comments

Comments
 (0)