We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbcb347 commit e728124Copy full SHA for e728124
1 file changed
terraform-infrastructure/provider.tf
@@ -0,0 +1,24 @@
1
+terraform {
2
+ required_version = ">= 1.5.0"
3
+ required_providers {
4
+ azurerm = {
5
+ source = "hashicorp/azurerm"
6
+ version = "~> 3.100"
7
+ }
8
+ azapi = {
9
+ source = "azure/azapi"
10
+ version = "~> 1.12"
11
12
+ random = {
13
+ source = "hashicorp/random"
14
+ version = "~> 3.5"
15
16
17
+}
18
+
19
+provider "azurerm" {
20
+ features {}
21
22
23
+# AzAPI provider is used for preview/unsupported resources (AI Foundry account & project, Cosmos SQL role assignments).
24
+provider "azapi" {}
0 commit comments