Examples for documentation for AzAPI provider including resource and update_resource

This commit is contained in:
Mark Gray
2022-04-11 15:09:07 -07:00
parent 64aa77f9f8
commit 3fcccfc376
6 changed files with 151 additions and 0 deletions

View File

@ -0,0 +1,13 @@
resource "azurerm_resource_group" "qs101" {
name = "rg-qs101"
location = "westus2"
depends_on = [
azurerm_resource_provider_registration.qs101
]
}
#
resource "azurerm_resource_provider_registration" "qs101" {
name = "Microsoft.LabServices"
}