Skip to content

Commit 37d6d0b

Browse files
fix: provider warnings (#205)
<!-- Thank you for submitting a Pull Request. Please fill out the template below.--> ## Overview/Summary Removing the required provider re-introduced a warning ## This PR fixes/adds/changes/removes N/A ### Breaking Changes None ## Testing Evidence Please provide any testing evidence to show that your Pull Request works/fixes as described and planned (include screenshots, if appropriate). ## As part of this Pull Request I have - [x] Checked for duplicate [Pull Requests](https://github.com/Azure/alz-terraform-accelerator/pulls) - [x] Associated it with relevant [issues](https://github.com/Azure/alz-terraform-accelerator/issues), for tracking and closure. - [x] Ensured my code/branch is up-to-date with the latest changes in the `main` [branch](https://github.com/Azure/alz-terraform-accelerator/tree/main) - [x] Performed testing and provided evidence. - [x] Updated relevant and associated documentation.
1 parent e50a779 commit 37d6d0b

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
terraform {
22
required_version = "~> 1.9"
3+
required_providers {
4+
azurerm = {
5+
source = "hashicorp/azurerm"
6+
version = "~> 4.0"
7+
}
8+
}
39
}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
terraform {
22
required_version = "~> 1.9"
3+
required_providers {
4+
azurerm = {
5+
source = "hashicorp/azurerm"
6+
version = "~> 4.0"
7+
}
8+
}
39
}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
terraform {
22
required_version = "~> 1.9"
3+
required_providers {
4+
azurerm = {
5+
source = "hashicorp/azurerm"
6+
version = "~> 4.0"
7+
}
8+
}
39
}

0 commit comments

Comments
 (0)