Examples for documentation for AzAPI provider including resource and update_resource
This commit is contained in:
23
quickstart/101-azapi-lab-services/providers.tf
Normal file
23
quickstart/101-azapi-lab-services/providers.tf
Normal file
@ -0,0 +1,23 @@
|
||||
terraform {
|
||||
required_providers {
|
||||
azapi = {
|
||||
source = "azure/azapi"
|
||||
version = "=0.1.0"
|
||||
}
|
||||
azurerm = {
|
||||
source = "hashicorp/azurerm"
|
||||
version = "=3.0.2"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
provider "azapi" {
|
||||
default_location = "eastus"
|
||||
default_tags = {
|
||||
team = "Azure deployments"
|
||||
}
|
||||
}
|
||||
|
||||
provider "azurerm" {
|
||||
features {}
|
||||
}
|
Reference in New Issue
Block a user