adding azfw quickstarts

This commit is contained in:
Charles Shea
2023-08-22 19:02:39 -04:00
parent d1b9572df1
commit ed29f3c468
10 changed files with 1382 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.69.0"
}
}
}
provider "azurerm" {
features {
resource_group {
prevent_deletion_if_contains_resources = false // Set to True for Production
}
}
}