From 72c7e787ecbe97e4d3230b1e506dd41f4347f9d7 Mon Sep 17 00:00:00 2001 From: lonegunmanb Date: Mon, 13 Nov 2023 11:27:32 +0800 Subject: [PATCH 01/64] Skip empty example (#270) * skip empty examples that contain no tf files * refactor code --- test/e2e/quickstart_test.go | 44 +++++++++++++++++++++++++++---------- 1 file changed, 32 insertions(+), 12 deletions(-) diff --git a/test/e2e/quickstart_test.go b/test/e2e/quickstart_test.go index 293dbaa85..da40dfc55 100644 --- a/test/e2e/quickstart_test.go +++ b/test/e2e/quickstart_test.go @@ -1,15 +1,17 @@ package e2e import ( - "github.com/gruntwork-io/terratest/modules/files" - "github.com/gruntwork-io/terratest/modules/packer" - test_structure "github.com/gruntwork-io/terratest/modules/test-structure" - "github.com/stretchr/testify/require" + "fmt" "os" "path/filepath" "strings" "testing" + "github.com/gruntwork-io/terratest/modules/files" + "github.com/gruntwork-io/terratest/modules/packer" + test_structure "github.com/gruntwork-io/terratest/modules/test-structure" + "github.com/stretchr/testify/require" + helper "github.com/Azure/terraform-module-test-helper" "github.com/gruntwork-io/terratest/modules/terraform" ) @@ -35,14 +37,11 @@ func Test_Quickstarts(t *testing.T) { folders = removeDuplicates(folders) for _, f := range folders { f = strings.TrimSpace(f) - if filepath.Dir(f) != "quickstart" { - continue - } rootPath := filepath.Join("..", "..") - path := filepath.Join(rootPath, f) - if !files.IsExistingDir(path) { + if skip(rootPath, f) { continue } + test, ok := speicalTests[f] if !ok { test = func(t *testing.T) { @@ -63,14 +62,35 @@ func allExamples() ([]string, error) { } var r []string for _, f := range examples { - if !f.IsDir() { - continue - } r = append(r, filepath.Join("quickstart", f.Name())) } return r, nil } +func skip(rootPath string, f string) bool { + f = filepath.Join(rootPath, f) + if !files.IsExistingDir(f) { + return true + } + if !strings.HasSuffix(filepath.Dir(f), fmt.Sprintf("%squickstart", string(os.PathSeparator))) { + return true + } + return !containsTerraformFile(f) +} + +func containsTerraformFile(f string) bool { + dir, err := os.ReadDir(f) + if err != nil { + return false + } + for _, entry := range dir { + if !entry.IsDir() && strings.HasSuffix(entry.Name(), ".tf") { + return true + } + } + return false +} + func test201VmssPackerJumpbox(t *testing.T) { examplePath := filepath.Join("..", "..", "quickstart", "201-vmss-packer-jumpbox") examplePath = test_structure.CopyTerraformFolderToTemp(t, examplePath, "") From 757cdd7134f28d1fbfd2d1138c2c9e202444dc67 Mon Sep 17 00:00:00 2001 From: Neil Ye Date: Tue, 14 Nov 2023 22:39:47 +0800 Subject: [PATCH 02/64] Fix 201-mysql-fs-db (#284) --- quickstart/201-mysql-fs-db/main.tf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/quickstart/201-mysql-fs-db/main.tf b/quickstart/201-mysql-fs-db/main.tf index d7d88c09c..bb1765cff 100644 --- a/quickstart/201-mysql-fs-db/main.tf +++ b/quickstart/201-mysql-fs-db/main.tf @@ -71,6 +71,8 @@ resource "azurerm_private_dns_zone_virtual_network_link" "default" { private_dns_zone_name = azurerm_private_dns_zone.default.name resource_group_name = azurerm_resource_group.rg.name virtual_network_id = azurerm_virtual_network.default.id + + depends_on = [azurerm_subnet.default] } # Manages the MySQL Flexible Server @@ -103,4 +105,4 @@ resource "azurerm_mysql_flexible_server" "default" { } depends_on = [azurerm_private_dns_zone_virtual_network_link.default] -} \ No newline at end of file +} From f72c62d2ad163de297afede1fae26a54d8cbc740 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 14 Nov 2023 14:40:06 +0000 Subject: [PATCH 03/64] Update TestRecord --- quickstart/201-mysql-fs-db/TestRecord.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/quickstart/201-mysql-fs-db/TestRecord.md b/quickstart/201-mysql-fs-db/TestRecord.md index 0fc090fa7..feefcf31d 100644 --- a/quickstart/201-mysql-fs-db/TestRecord.md +++ b/quickstart/201-mysql-fs-db/TestRecord.md @@ -1,3 +1,20 @@ +## 14 Nov 23 14:38 UTC + +Success: true + +### Versions + +Terraform v1.6.1 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.80.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 00:48 UTC Success: true From 69d738882fb26f1d2546af95b64ecc44817ee71e Mon Sep 17 00:00:00 2001 From: Neil Ye Date: Wed, 15 Nov 2023 12:38:36 +0800 Subject: [PATCH 04/64] 101-machine-learning - update the settings of random_string (#271) --- quickstart/101-machine-learning/compute.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/quickstart/101-machine-learning/compute.tf b/quickstart/101-machine-learning/compute.tf index ea69fc749..d35fc64c1 100644 --- a/quickstart/101-machine-learning/compute.tf +++ b/quickstart/101-machine-learning/compute.tf @@ -3,6 +3,7 @@ resource "random_string" "ci_prefix" { length = 8 upper = false special = false + numeric = false } # Compute instance @@ -31,4 +32,4 @@ resource "azurerm_machine_learning_compute_cluster" "compute" { scale_down_nodes_after_idle_duration = "PT15M" # 15 minutes } -} \ No newline at end of file +} From d136bbb5a165e67a2396dc9b981e2953cae807ea Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 15 Nov 2023 04:38:52 +0000 Subject: [PATCH 05/64] Update TestRecord --- quickstart/101-machine-learning/TestRecord.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/quickstart/101-machine-learning/TestRecord.md b/quickstart/101-machine-learning/TestRecord.md index 789d0ce1e..6953f4b00 100644 --- a/quickstart/101-machine-learning/TestRecord.md +++ b/quickstart/101-machine-learning/TestRecord.md @@ -1,3 +1,20 @@ +## 14 Nov 23 14:43 UTC + +Success: true + +### Versions + +Terraform v1.6.1 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.80.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 03:19 UTC Success: false From 6e5cdfc2a6158851877fa349daa538e7c2478bb8 Mon Sep 17 00:00:00 2001 From: Neil Ye Date: Wed, 15 Nov 2023 13:27:30 +0800 Subject: [PATCH 06/64] 101-devtest-labs - generate the vm name with random value (#272) * 101-devtest-labs - update the vm name --- quickstart/101-devtest-labs/main.tf | 9 ++++++++- quickstart/101-devtest-labs/readme.md | 1 - quickstart/101-devtest-labs/variables.tf | 6 ------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/quickstart/101-devtest-labs/main.tf b/quickstart/101-devtest-labs/main.tf index ee3cf9102..58c18576a 100644 --- a/quickstart/101-devtest-labs/main.tf +++ b/quickstart/101-devtest-labs/main.tf @@ -2,6 +2,13 @@ resource "random_pet" "rg_name" { prefix = var.resource_group_name_prefix } +resource "random_string" "vm_suffix" { + length = 5 + upper = false + special = false + numeric = false +} + resource "azurerm_resource_group" "rg" { name = random_pet.rg_name.id location = var.resource_group_location @@ -34,7 +41,7 @@ resource "azurerm_dev_test_virtual_network" "vnet" { } resource "azurerm_dev_test_windows_virtual_machine" "vm" { - name = var.vm_name + name = "ExampleVM-${random_string.vm_suffix.result}" lab_name = azurerm_dev_test_lab.lab.name lab_subnet_name = "Dtl${var.lab_name}Subnet" resource_group_name = azurerm_resource_group.rg.name diff --git a/quickstart/101-devtest-labs/readme.md b/quickstart/101-devtest-labs/readme.md index bedbeba60..1d2bb47a8 100644 --- a/quickstart/101-devtest-labs/readme.md +++ b/quickstart/101-devtest-labs/readme.md @@ -17,7 +17,6 @@ This template deploys a Windows virtual machine within an Azure DevTest Lab. | `resource_group_name_prefix` | Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription. | rg | | `resource_group_location` | Location of the resource group. | eastus | | `lab_name` | The name of the new lab instance to be created. | | -| `vm_name` | The name of the VM to be created. | | | `vm_size` | The size of the VM to be created. | Standard_D4_v3 | | `user_name` | The username for the local account that will be created on the new VM. | | | `password` | The password for the local account that will be created on the new VM. | | diff --git a/quickstart/101-devtest-labs/variables.tf b/quickstart/101-devtest-labs/variables.tf index 7babeda66..ecc012112 100644 --- a/quickstart/101-devtest-labs/variables.tf +++ b/quickstart/101-devtest-labs/variables.tf @@ -16,12 +16,6 @@ variable "lab_name" { default = "ExampleLab" } -variable "vm_name" { - type = string - description = "The name of the vm to be created." - default = "example-vm" -} - variable "vm_size" { type = string description = "The size of the vm to be created." From 984e6bd413ed04dc659ffae600d50258fa065579 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 15 Nov 2023 05:27:45 +0000 Subject: [PATCH 07/64] Update TestRecord --- quickstart/101-devtest-labs/TestRecord.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/quickstart/101-devtest-labs/TestRecord.md b/quickstart/101-devtest-labs/TestRecord.md index 3d58a100d..3bf5a8932 100644 --- a/quickstart/101-devtest-labs/TestRecord.md +++ b/quickstart/101-devtest-labs/TestRecord.md @@ -1,3 +1,20 @@ +## 15 Nov 23 05:03 UTC + +Success: true + +### Versions + +Terraform v1.6.1 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 04:30 UTC Success: false From 773bba8680b91371b7fd24ee6f525969b2a44f93 Mon Sep 17 00:00:00 2001 From: Neil Ye Date: Thu, 16 Nov 2023 09:53:59 +0800 Subject: [PATCH 08/64] Fix 101-managed-instance (#273) --- quickstart/101-managed-instance/main.tf | 6 +++++- quickstart/101-managed-instance/providers.tf | 8 ++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/quickstart/101-managed-instance/main.tf b/quickstart/101-managed-instance/main.tf index aa3c0286a..fa873d3e7 100644 --- a/quickstart/101-managed-instance/main.tf +++ b/quickstart/101-managed-instance/main.tf @@ -61,6 +61,8 @@ resource "azurerm_route_table" "example" { resource "azurerm_subnet_route_table_association" "example" { subnet_id = azurerm_subnet.example.id route_table_id = azurerm_route_table.example.id + + depends_on = [azurerm_subnet_network_security_group_association.example] } # Create managed instance @@ -75,6 +77,8 @@ resource "azurerm_mssql_managed_instance" "main" { sku_name = var.sku_name vcores = var.vcores storage_size_in_gb = var.storage_size_in_gb + + depends_on = [azurerm_subnet_route_table_association.example] } resource "random_password" "password" { @@ -89,4 +93,4 @@ resource "random_password" "password" { resource "random_pet" "prefix" { prefix = var.prefix length = 1 -} \ No newline at end of file +} diff --git a/quickstart/101-managed-instance/providers.tf b/quickstart/101-managed-instance/providers.tf index dc42605e0..fc1945054 100644 --- a/quickstart/101-managed-instance/providers.tf +++ b/quickstart/101-managed-instance/providers.tf @@ -14,5 +14,9 @@ terraform { } provider "azurerm" { - features {} -} \ No newline at end of file + features { + resource_group { + prevent_deletion_if_contains_resources = false + } + } +} From 3579842ada6b52e0cac679895360e453ff75ee52 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 16 Nov 2023 01:54:14 +0000 Subject: [PATCH 09/64] Update TestRecord --- quickstart/101-managed-instance/TestRecord.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/quickstart/101-managed-instance/TestRecord.md b/quickstart/101-managed-instance/TestRecord.md index af8ea7dc8..4fe3653d7 100644 --- a/quickstart/101-managed-instance/TestRecord.md +++ b/quickstart/101-managed-instance/TestRecord.md @@ -1,3 +1,20 @@ +## 15 Nov 23 06:12 UTC + +Success: true + +### Versions + +Terraform v1.6.1 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.80.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 06:14 UTC Success: false From ca8ddca40e3f2ae0966049d057efe5043161edca Mon Sep 17 00:00:00 2001 From: Tom Archer Date: Wed, 15 Nov 2023 17:58:36 -0800 Subject: [PATCH 10/64] Update readme.md (#297) --- quickstart/101-vm-with-infrastructure/readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickstart/101-vm-with-infrastructure/readme.md b/quickstart/101-vm-with-infrastructure/readme.md index 7973fa52c..05fd0df8c 100644 --- a/quickstart/101-vm-with-infrastructure/readme.md +++ b/quickstart/101-vm-with-infrastructure/readme.md @@ -1,4 +1,4 @@ -# Azure resource group +# Azure Linux VM This template deploys a Linux virtual machine (VM) with infrastructure that includes a virtual network, subnet, public IP address, and more. @@ -29,4 +29,4 @@ This template deploys a Linux virtual machine (VM) with infrastructure that incl ## Example -To see how to run this example, see [Quickstart: Configure a Linux virtual machine in Azure using Terraform](https://learn.microsoft.com/azure/virtual-machines/linux/quick-create-terraform). \ No newline at end of file +To see how to run this example, see [Quickstart: Configure a Linux virtual machine in Azure using Terraform](https://learn.microsoft.com/azure/virtual-machines/linux/quick-create-terraform). From aad151de905f52385706875032b0795a7e6df8d6 Mon Sep 17 00:00:00 2001 From: Tom Archer Date: Thu, 16 Nov 2023 18:22:05 -0800 Subject: [PATCH 11/64] User Story 177223 (#269) * Added output of endpoint; Renamed readme --- .../README.md | 2 -- .../{output.tf => outputs.tf} | 4 ++++ .../readme.md | 21 +++++++++++++++++++ .../variables.tf | 6 ++++-- 4 files changed, 29 insertions(+), 4 deletions(-) delete mode 100644 quickstart/101-storage-account-with-static-website/README.md rename quickstart/101-storage-account-with-static-website/{output.tf => outputs.tf} (62%) create mode 100644 quickstart/101-storage-account-with-static-website/readme.md diff --git a/quickstart/101-storage-account-with-static-website/README.md b/quickstart/101-storage-account-with-static-website/README.md deleted file mode 100644 index 27f249490..000000000 --- a/quickstart/101-storage-account-with-static-website/README.md +++ /dev/null @@ -1,2 +0,0 @@ -# build_local_module -A module to deploy basic Azure resources diff --git a/quickstart/101-storage-account-with-static-website/output.tf b/quickstart/101-storage-account-with-static-website/outputs.tf similarity index 62% rename from quickstart/101-storage-account-with-static-website/output.tf rename to quickstart/101-storage-account-with-static-website/outputs.tf index 8cb21de76..be02f38c4 100644 --- a/quickstart/101-storage-account-with-static-website/output.tf +++ b/quickstart/101-storage-account-with-static-website/outputs.tf @@ -5,3 +5,7 @@ output "resource_group_name" { output "storage_account_name" { value = azurerm_storage_account.storage_account.name } + +output "primary_web_host" { + value = azurerm_storage_account.storage_account.primary_web_host +} \ No newline at end of file diff --git a/quickstart/101-storage-account-with-static-website/readme.md b/quickstart/101-storage-account-with-static-website/readme.md new file mode 100644 index 000000000..a3aa54ce6 --- /dev/null +++ b/quickstart/101-storage-account-with-static-website/readme.md @@ -0,0 +1,21 @@ +# Azure Storage account with hosted static website + +This template deploys an [Azure Storage Account](https://www.terraform.io/docs/providers/azurerm/r/storage_account.html) with static website hosting enabled. +## Terraform resource types + +- [random_pet](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/pet) +- [azurerm_resource_group](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/resource_group) +- [random_string](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/string) +- [azurerm_storage_account](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/storage_account) +- [azurerm_storage_blob](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/storage_blob) + +## Variables + +| Name | Description | Default | +|-|-|-| +| `resource_group_name_prefix` | Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription. | rg | +| `resource_group_location` | Location of the resource group. | eastus | + +## Example + +To see how to run this example, see [Quickstart: Deploy a static website on Azure Storage using Terraform](https://docs.microsoft.com/azure/storage/quickstart-storage-blob-static-website). diff --git a/quickstart/101-storage-account-with-static-website/variables.tf b/quickstart/101-storage-account-with-static-website/variables.tf index d99bf4b81..fbcb57997 100644 --- a/quickstart/101-storage-account-with-static-website/variables.tf +++ b/quickstart/101-storage-account-with-static-website/variables.tf @@ -1,9 +1,11 @@ variable "resource_group_location" { - default = "eastus" + type = string description = "Location of the resource group." + default = "eastus" } variable "resource_group_name_prefix" { - default = "rg" + type = string description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription." + default = "rg" } From b15cfb14adc8daf6e5e785c811b01388c1ce7a5c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 17 Nov 2023 02:22:22 +0000 Subject: [PATCH 12/64] Update TestRecord --- .../TestRecord.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/quickstart/101-storage-account-with-static-website/TestRecord.md b/quickstart/101-storage-account-with-static-website/TestRecord.md index 0fec0a5e4..835fba8d8 100644 --- a/quickstart/101-storage-account-with-static-website/TestRecord.md +++ b/quickstart/101-storage-account-with-static-website/TestRecord.md @@ -1,3 +1,20 @@ +## 14 Nov 23 01:40 UTC + +Success: true + +### Versions + +Terraform v1.6.1 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.80.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:42 UTC Success: true From 9ff4e9f95a56f454bcb161683989ee3a69b85c34 Mon Sep 17 00:00:00 2001 From: Neil Ye Date: Fri, 17 Nov 2023 10:45:54 +0800 Subject: [PATCH 13/64] Fix 201-function-app (#290) --- quickstart/201-function-app/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickstart/201-function-app/main.tf b/quickstart/201-function-app/main.tf index 5c09c6369..66f989f3d 100644 --- a/quickstart/201-function-app/main.tf +++ b/quickstart/201-function-app/main.tf @@ -47,5 +47,5 @@ resource "azurerm_linux_function_app" "main" { resource "random_pet" "prefix" { prefix = var.prefix - length = 2 -} \ No newline at end of file + length = 1 +} From 1eed1d2c560d6db125bae7ddbe56db29f504fe5d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 17 Nov 2023 02:46:07 +0000 Subject: [PATCH 14/64] Update TestRecord --- quickstart/201-function-app/TestRecord.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/quickstart/201-function-app/TestRecord.md b/quickstart/201-function-app/TestRecord.md index 2db1d7ff3..34137b273 100644 --- a/quickstart/201-function-app/TestRecord.md +++ b/quickstart/201-function-app/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Nov 23 02:29 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 00:57 UTC Success: false From 06730dbb459bb2df27309af2b155b87eec6528b4 Mon Sep 17 00:00:00 2001 From: Neil Ye Date: Fri, 17 Nov 2023 10:46:31 +0800 Subject: [PATCH 15/64] Fix 201-postgresql-fs-db (#279) --- quickstart/201-postgresql-fs-db/postgresql-fs-db.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickstart/201-postgresql-fs-db/postgresql-fs-db.tf b/quickstart/201-postgresql-fs-db/postgresql-fs-db.tf index 6041eb606..703a098be 100644 --- a/quickstart/201-postgresql-fs-db/postgresql-fs-db.tf +++ b/quickstart/201-postgresql-fs-db/postgresql-fs-db.tf @@ -1,6 +1,6 @@ resource "azurerm_postgresql_flexible_server_database" "default" { name = "${random_pet.name_prefix.id}-db" server_id = azurerm_postgresql_flexible_server.default.id - collation = "en_US.UTF8" + collation = "en_US.utf8" charset = "UTF8" } From 3d31e205185c6dcd42fecbc0eeae7ae82be9bc88 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 17 Nov 2023 02:46:44 +0000 Subject: [PATCH 16/64] Update TestRecord --- quickstart/201-postgresql-fs-db/TestRecord.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/quickstart/201-postgresql-fs-db/TestRecord.md b/quickstart/201-postgresql-fs-db/TestRecord.md index f41ac0e92..2f5bb7e02 100644 --- a/quickstart/201-postgresql-fs-db/TestRecord.md +++ b/quickstart/201-postgresql-fs-db/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Nov 23 02:39 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 00:30 UTC Success: false From 960d0719c4411846e0601e8c1dbd1a2cd81eddd0 Mon Sep 17 00:00:00 2001 From: Neil Ye Date: Fri, 17 Nov 2023 10:47:09 +0800 Subject: [PATCH 17/64] Fix 201-function-app-key-vault-ref (#291) --- quickstart/201-function-app-key-vault-ref/variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickstart/201-function-app-key-vault-ref/variables.tf b/quickstart/201-function-app-key-vault-ref/variables.tf index 81401ff71..1cc673c5c 100644 --- a/quickstart/201-function-app-key-vault-ref/variables.tf +++ b/quickstart/201-function-app-key-vault-ref/variables.tf @@ -1,6 +1,6 @@ variable "prefix" { type = string - default = "func-app-kvref" + default = "funcappkvref" description = "Prefix of the resource name" } @@ -8,4 +8,4 @@ variable "location" { type = string default = "eastus" description = "Location to deploy the resource group" -} \ No newline at end of file +} From a09e5f225bb6f2aa11f21244e28ca0c12a6d61d6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 17 Nov 2023 02:47:23 +0000 Subject: [PATCH 18/64] Update TestRecord --- .../TestRecord.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/quickstart/201-function-app-key-vault-ref/TestRecord.md b/quickstart/201-function-app-key-vault-ref/TestRecord.md index e8ba8dc30..580f52418 100644 --- a/quickstart/201-function-app-key-vault-ref/TestRecord.md +++ b/quickstart/201-function-app-key-vault-ref/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Nov 23 02:32 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 00:56 UTC Success: false From 256f1edff210daa4484764a0db4bec54a49f6886 Mon Sep 17 00:00:00 2001 From: Neil Ye Date: Fri, 17 Nov 2023 17:39:39 +0800 Subject: [PATCH 19/64] Fix 201-vmss-jumpbox (#275) * Fix 201-vmss-jumpbox --- quickstart/201-vmss-jumpbox/main.tf | 312 ++++++++++++----------- quickstart/201-vmss-jumpbox/readme.md | 2 +- quickstart/201-vmss-jumpbox/variables.tf | 32 +-- 3 files changed, 176 insertions(+), 170 deletions(-) diff --git a/quickstart/201-vmss-jumpbox/main.tf b/quickstart/201-vmss-jumpbox/main.tf index 15ebf449b..d4196ab73 100644 --- a/quickstart/201-vmss-jumpbox/main.tf +++ b/quickstart/201-vmss-jumpbox/main.tf @@ -1,205 +1,209 @@ terraform { required_version = ">=0.12" - + required_providers { azurerm = { - source = "hashicorp/azurerm" + source = "hashicorp/azurerm" version = "~>2.0" } } } provider "azurerm" { - features {} + features { + resource_group { + prevent_deletion_if_contains_resources = false + } + } } resource "azurerm_resource_group" "vmss" { - name = var.resource_group_name - location = var.location - tags = var.tags + name = var.resource_group_name + location = var.location + tags = var.tags } resource "random_string" "fqdn" { - length = 6 - special = false - upper = false - number = false + length = 6 + special = false + upper = false + number = false } resource "azurerm_virtual_network" "vmss" { - name = "vmss-vnet" - address_space = ["10.0.0.0/16"] - location = var.location - resource_group_name = azurerm_resource_group.vmss.name - tags = var.tags + name = "vmss-vnet" + address_space = ["10.0.0.0/16"] + location = var.location + resource_group_name = azurerm_resource_group.vmss.name + tags = var.tags } resource "azurerm_subnet" "vmss" { - name = "vmss-subnet" - resource_group_name = azurerm_resource_group.vmss.name - virtual_network_name = azurerm_virtual_network.vmss.name - address_prefixes = ["10.0.2.0/24"] + name = "vmss-subnet" + resource_group_name = azurerm_resource_group.vmss.name + virtual_network_name = azurerm_virtual_network.vmss.name + address_prefixes = ["10.0.2.0/24"] } resource "azurerm_public_ip" "vmss" { - name = "vmss-public-ip" - location = var.location - resource_group_name = azurerm_resource_group.vmss.name - allocation_method = "Static" - domain_name_label = random_string.fqdn.result - tags = var.tags + name = "vmss-public-ip" + location = var.location + resource_group_name = azurerm_resource_group.vmss.name + allocation_method = "Static" + domain_name_label = random_string.fqdn.result + tags = var.tags } resource "azurerm_lb" "vmss" { - name = "vmss-lb" - location = var.location - resource_group_name = azurerm_resource_group.vmss.name + name = "vmss-lb" + location = var.location + resource_group_name = azurerm_resource_group.vmss.name - frontend_ip_configuration { - name = "PublicIPAddress" - public_ip_address_id = azurerm_public_ip.vmss.id - } + frontend_ip_configuration { + name = "PublicIPAddress" + public_ip_address_id = azurerm_public_ip.vmss.id + } - tags = var.tags + tags = var.tags } resource "azurerm_lb_backend_address_pool" "bpepool" { - loadbalancer_id = azurerm_lb.vmss.id - name = "BackEndAddressPool" + loadbalancer_id = azurerm_lb.vmss.id + name = "BackEndAddressPool" } resource "azurerm_lb_probe" "vmss" { - resource_group_name = azurerm_resource_group.vmss.name - loadbalancer_id = azurerm_lb.vmss.id - name = "ssh-running-probe" - port = var.application_port + resource_group_name = azurerm_resource_group.vmss.name + loadbalancer_id = azurerm_lb.vmss.id + name = "ssh-running-probe" + port = var.application_port } resource "azurerm_lb_rule" "lbnatrule" { - resource_group_name = azurerm_resource_group.vmss.name - loadbalancer_id = azurerm_lb.vmss.id - name = "http" - protocol = "Tcp" - frontend_port = var.application_port - backend_port = var.application_port - backend_address_pool_id = azurerm_lb_backend_address_pool.bpepool.id - frontend_ip_configuration_name = "PublicIPAddress" - probe_id = azurerm_lb_probe.vmss.id + resource_group_name = azurerm_resource_group.vmss.name + loadbalancer_id = azurerm_lb.vmss.id + name = "http" + protocol = "Tcp" + frontend_port = var.application_port + backend_port = var.application_port + backend_address_pool_ids = [azurerm_lb_backend_address_pool.bpepool.id] + frontend_ip_configuration_name = "PublicIPAddress" + probe_id = azurerm_lb_probe.vmss.id } resource "azurerm_virtual_machine_scale_set" "vmss" { - name = "vmscaleset" - location = var.location - resource_group_name = azurerm_resource_group.vmss.name - upgrade_policy_mode = "Manual" - - sku { - name = "Standard_DS1_v2" - tier = "Standard" - capacity = 2 - } - - storage_profile_image_reference { - publisher = "Canonical" - offer = "UbuntuServer" - sku = "16.04-LTS" - version = "latest" - } - - storage_profile_os_disk { - name = "" - caching = "ReadWrite" - create_option = "FromImage" - managed_disk_type = "Standard_LRS" - } - - storage_profile_data_disk { - lun = 0 - caching = "ReadWrite" - create_option = "Empty" - disk_size_gb = 10 - } - - os_profile { - computer_name_prefix = "vmlab" - admin_username = var.admin_user - admin_password = var.admin_password - custom_data = file("web.conf") - } - - os_profile_linux_config { - disable_password_authentication = false - } - - network_profile { - name = "terraformnetworkprofile" - primary = true - - ip_configuration { - name = "IPConfiguration" - subnet_id = azurerm_subnet.vmss.id - load_balancer_backend_address_pool_ids = [azurerm_lb_backend_address_pool.bpepool.id] - primary = true - } - } - - tags = var.tags + name = "vmscaleset" + location = var.location + resource_group_name = azurerm_resource_group.vmss.name + upgrade_policy_mode = "Manual" + + sku { + name = "Standard_DS1_v2" + tier = "Standard" + capacity = 2 + } + + storage_profile_image_reference { + publisher = "Canonical" + offer = "UbuntuServer" + sku = "16.04-LTS" + version = "latest" + } + + storage_profile_os_disk { + name = "" + caching = "ReadWrite" + create_option = "FromImage" + managed_disk_type = "Standard_LRS" + } + + storage_profile_data_disk { + lun = 0 + caching = "ReadWrite" + create_option = "Empty" + disk_size_gb = 10 + } + + os_profile { + computer_name_prefix = "vmlab" + admin_username = var.admin_user + admin_password = var.admin_password + custom_data = file("web.conf") + } + + os_profile_linux_config { + disable_password_authentication = false + } + + network_profile { + name = "terraformnetworkprofile" + primary = true + + ip_configuration { + name = "IPConfiguration" + subnet_id = azurerm_subnet.vmss.id + load_balancer_backend_address_pool_ids = [azurerm_lb_backend_address_pool.bpepool.id] + primary = true + } + } + + tags = var.tags } resource "azurerm_public_ip" "jumpbox" { - name = "jumpbox-public-ip" - location = var.location - resource_group_name = azurerm_resource_group.vmss.name - allocation_method = "Static" - domain_name_label = "${random_string.fqdn.result}-ssh" - tags = var.tags + name = "jumpbox-public-ip" + location = var.location + resource_group_name = azurerm_resource_group.vmss.name + allocation_method = "Static" + domain_name_label = "${random_string.fqdn.result}-ssh" + tags = var.tags } resource "azurerm_network_interface" "jumpbox" { - name = "jumpbox-nic" - location = var.location - resource_group_name = azurerm_resource_group.vmss.name - - ip_configuration { - name = "IPConfiguration" - subnet_id = azurerm_subnet.vmss.id - private_ip_address_allocation = "dynamic" - public_ip_address_id = azurerm_public_ip.jumpbox.id - } - - tags = var.tags + name = "jumpbox-nic" + location = var.location + resource_group_name = azurerm_resource_group.vmss.name + + ip_configuration { + name = "IPConfiguration" + subnet_id = azurerm_subnet.vmss.id + private_ip_address_allocation = "Dynamic" + public_ip_address_id = azurerm_public_ip.jumpbox.id + } + + tags = var.tags } resource "azurerm_virtual_machine" "jumpbox" { - name = "jumpbox" - location = var.location - resource_group_name = azurerm_resource_group.vmss.name - network_interface_ids = [azurerm_network_interface.jumpbox.id] - vm_size = "Standard_DS1_v2" - - storage_image_reference { - publisher = "Canonical" - offer = "UbuntuServer" - sku = "16.04-LTS" - version = "latest" - } - - storage_os_disk { - name = "jumpbox-osdisk" - caching = "ReadWrite" - create_option = "FromImage" - managed_disk_type = "Standard_LRS" - } - - os_profile { - computer_name = "jumpbox" - admin_username = var.admin_user - admin_password = var.admin_password - } - - os_profile_linux_config { - disable_password_authentication = false - } - - tags = var.tags -} \ No newline at end of file + name = "jumpbox" + location = var.location + resource_group_name = azurerm_resource_group.vmss.name + network_interface_ids = [azurerm_network_interface.jumpbox.id] + vm_size = "Standard_DS1_v2" + + storage_image_reference { + publisher = "Canonical" + offer = "UbuntuServer" + sku = "16.04-LTS" + version = "latest" + } + + storage_os_disk { + name = "jumpbox-osdisk" + caching = "ReadWrite" + create_option = "FromImage" + managed_disk_type = "Standard_LRS" + } + + os_profile { + computer_name = "jumpbox" + admin_username = var.admin_user + admin_password = var.admin_password + } + + os_profile_linux_config { + disable_password_authentication = false + } + + tags = var.tags +} diff --git a/quickstart/201-vmss-jumpbox/readme.md b/quickstart/201-vmss-jumpbox/readme.md index df9086d37..48b29072b 100644 --- a/quickstart/201-vmss-jumpbox/readme.md +++ b/quickstart/201-vmss-jumpbox/readme.md @@ -27,7 +27,7 @@ This template deploys an Azure virtual machine scale set with a jumpbox. | `tags` | Map of the tags to use for the resources that are deployed | | `application_port` | Port that you want to expose to the external load balancer | | `admin_user` | User name to use as the admin account on the VMs that will be part of the VM scale set | -| `admin_password` | Default password for admin account (NOTE: For security reasons, this value is not set in the plaintext variables.tf file.) | +| `admin_password` | Default password for admin account | ## Example diff --git a/quickstart/201-vmss-jumpbox/variables.tf b/quickstart/201-vmss-jumpbox/variables.tf index 574d720c8..54b088544 100644 --- a/quickstart/201-vmss-jumpbox/variables.tf +++ b/quickstart/201-vmss-jumpbox/variables.tf @@ -1,31 +1,33 @@ variable "resource_group_name" { - description = "Name of the resource group in which the resources will be created" - default = "myResourceGroup" + description = "Name of the resource group in which the resources will be created" + default = "myResourceGroup" } variable "location" { - default = "eastus" - description = "Location where resources will be created" + default = "eastus" + description = "Location where resources will be created" } variable "tags" { - description = "Map of the tags to use for the resources that are deployed" - type = map(string) - default = { - environment = "codelab" - } + description = "Map of the tags to use for the resources that are deployed" + type = map(string) + default = { + environment = "codelab" + } } variable "application_port" { - description = "Port that you want to expose to the external load balancer" - default = 80 + description = "Port that you want to expose to the external load balancer" + default = 80 } variable "admin_user" { - description = "User name to use as the admin account on the VMs that will be part of the VM scale set" - default = "azureuser" + description = "User name to use as the admin account on the VMs that will be part of the VM scale set" + default = "azureuser" } variable "admin_password" { - description = "Default password for admin account" -} \ No newline at end of file + description = "Default password for admin account" + default = "ChangeMe123!" + sensitive = true +} From 2ca5b80520e3d716ec33586e01a970dbb0686df9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 17 Nov 2023 09:39:58 +0000 Subject: [PATCH 20/64] Update TestRecord --- quickstart/201-vmss-jumpbox/TestRecord.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/quickstart/201-vmss-jumpbox/TestRecord.md b/quickstart/201-vmss-jumpbox/TestRecord.md index 8022dde67..6e1f2d278 100644 --- a/quickstart/201-vmss-jumpbox/TestRecord.md +++ b/quickstart/201-vmss-jumpbox/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Nov 23 03:07 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 00:25 UTC Success: false From 97c14ebe749cb7942081ab94017158183e132402 Mon Sep 17 00:00:00 2001 From: Neil Ye Date: Fri, 17 Nov 2023 17:40:30 +0800 Subject: [PATCH 21/64] Fix 201-vmss-disk-encryption-extension (#277) --- quickstart/201-vmss-disk-encryption-extension/main.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/quickstart/201-vmss-disk-encryption-extension/main.tf b/quickstart/201-vmss-disk-encryption-extension/main.tf index e59ad4505..7f369758d 100644 --- a/quickstart/201-vmss-disk-encryption-extension/main.tf +++ b/quickstart/201-vmss-disk-encryption-extension/main.tf @@ -30,6 +30,7 @@ resource "azurerm_key_vault_access_policy" "service-principal" { "Create", "Delete", "Get", + "GetRotationPolicy", "Update", ] @@ -141,4 +142,4 @@ resource "random_password" "password" { resource "random_pet" "prefix" { prefix = var.prefix length = 1 -} \ No newline at end of file +} From 01f9c49cd0ac001b04ab6bf90a951699c60389e1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 17 Nov 2023 09:40:45 +0000 Subject: [PATCH 22/64] Update TestRecord --- .../TestRecord.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/quickstart/201-vmss-disk-encryption-extension/TestRecord.md b/quickstart/201-vmss-disk-encryption-extension/TestRecord.md index 44d69a68a..e5ebdd109 100644 --- a/quickstart/201-vmss-disk-encryption-extension/TestRecord.md +++ b/quickstart/201-vmss-disk-encryption-extension/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Nov 23 03:01 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 00:30 UTC Success: false From 9037930adead6b5bed5c2e70c2b93dd9c6d963db Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 19 Nov 2023 06:00:15 +0000 Subject: [PATCH 23/64] Update TestRecord --- .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-application-gateway/TestRecord.md | 17 + .../101-attestation-provider/TestRecord.md | 18 ++ .../TestRecord.md | 18 ++ .../101-azapi-lab-services/TestRecord.md | 17 + .../101-azfw-with-fwpolicy/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-azure-cognitive-search/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../101-azure-virtual-desktop/TestRecord.md | 18 ++ .../TestRecord.md | 17 + .../101-cdn-with-custom-origin/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-aad-rbac/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-autoscale/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-free-tier/TestRecord.md | 17 + .../101-cosmos-db-manualscale/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-databricks-cmk-dbfs/TestRecord.md | 17 + .../101-ddos-protection-plan/TestRecord.md | 17 + quickstart/101-devtest-labs/TestRecord.md | 17 + quickstart/101-dns_zone/TestRecord.md | 17 + .../101-firewall-standard/TestRecord.md | 17 + .../101-front-door-classic/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../TestRecord.md | 17 + quickstart/101-key-vault-key/TestRecord.md | 17 + quickstart/101-machine-learning/TestRecord.md | 17 + quickstart/101-managed-instance/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/101-notification-hub/TestRecord.md | 17 + quickstart/101-resource-group/TestRecord.md | 17 + quickstart/101-sql-database/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-storage-static-website/TestRecord.md | 17 + .../101-stream-analytics-job/TestRecord.md | 17 + quickstart/101-synapse/TestRecord.md | 18 ++ .../TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/101-vm-auto-shutdown/TestRecord.md | 17 + quickstart/101-vm-cluster-linux/TestRecord.md | 18 ++ .../101-vm-cluster-windows/TestRecord.md | 17 + .../101-vm-with-infrastructure/TestRecord.md | 18 ++ .../101-web-app-linux-container/TestRecord.md | 17 + .../101-web-app-linux-java/TestRecord.md | 17 + .../101-web-app-windows-dotnet/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/201-aks-acr-identity/TestRecord.md | 17 + quickstart/201-aks-helm/TestRecord.md | 18 ++ .../201-aks-log-analytics/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../201-azfw-multi-addresses/TestRecord.md | 17 + .../201-azfw-with-avzones/TestRecord.md | 17 + .../201-azfw-with-ipgroups/TestRecord.md | 18 ++ .../201-azfw-with-secure-hub/TestRecord.md | 17 + .../201-azure-pipelines-ci-cd/TestRecord.md | 15 + .../201-confidential-os-disk/TestRecord.md | 17 + quickstart/201-confidential-vm/TestRecord.md | 18 ++ .../201-confidential-vmss/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/201-function-app/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 18 ++ quickstart/201-mysql-fs-db/TestRecord.md | 17 + quickstart/201-postgresql-fs-db/TestRecord.md | 17 + quickstart/201-synapse-secure/TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 17 + quickstart/201-vmss-jumpbox/TestRecord.md | 17 + .../201-web-app-docker-acr/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 32 ++ quickstart/301-aks-enterprise/TestRecord.md | 293 ++++++++++++++++++ .../301-aks-private-cluster/TestRecord.md | 17 + quickstart/301-hub-spoke/TestRecord.md | 16 + .../TestRecord.md | 32 ++ .../301-service-fabric-apim/TestRecord.md | 18 ++ quickstart/301-service-fabric/TestRecord.md | 18 ++ quickstart/template/TestRecord.md | 16 + 85 files changed, 1766 insertions(+) diff --git a/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md b/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md index 2046d212d..f67cd083b 100644 --- a/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md +++ b/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 00:16 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 00:22 UTC Success: true diff --git a/quickstart/101-analysis-services-create/TestRecord.md b/quickstart/101-analysis-services-create/TestRecord.md index 6815dcc45..f9ff1606d 100644 --- a/quickstart/101-analysis-services-create/TestRecord.md +++ b/quickstart/101-analysis-services-create/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 03:31 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 06:50 UTC Success: true diff --git a/quickstart/101-application-gateway/TestRecord.md b/quickstart/101-application-gateway/TestRecord.md index 6464f4c18..ee1c25493 100644 --- a/quickstart/101-application-gateway/TestRecord.md +++ b/quickstart/101-application-gateway/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 03:41 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 07:02 UTC Success: true diff --git a/quickstart/101-attestation-provider/TestRecord.md b/quickstart/101-attestation-provider/TestRecord.md index 42acf8f8a..50623a8c7 100644 --- a/quickstart/101-attestation-provider/TestRecord.md +++ b/quickstart/101-attestation-provider/TestRecord.md @@ -1,3 +1,21 @@ +## 19 Nov 23 03:25 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 12 Nov 23 06:46 UTC Success: true diff --git a/quickstart/101-azapi-eventhub-network-rules/TestRecord.md b/quickstart/101-azapi-eventhub-network-rules/TestRecord.md index 4cc453138..8561a71c0 100644 --- a/quickstart/101-azapi-eventhub-network-rules/TestRecord.md +++ b/quickstart/101-azapi-eventhub-network-rules/TestRecord.md @@ -1,3 +1,21 @@ +## 19 Nov 23 03:28 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v0.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 ++ provider registry.terraform.io/hashicorp/random v3.1.2 + +### Error + + + +--- + ## 12 Nov 23 06:47 UTC Success: true diff --git a/quickstart/101-azapi-lab-services/TestRecord.md b/quickstart/101-azapi-lab-services/TestRecord.md index 11be5f81f..4a41c17d9 100644 --- a/quickstart/101-azapi-lab-services/TestRecord.md +++ b/quickstart/101-azapi-lab-services/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 03:24 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v0.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 + +### Error + + + +--- + ## 12 Nov 23 06:44 UTC Success: false diff --git a/quickstart/101-azfw-with-fwpolicy/TestRecord.md b/quickstart/101-azfw-with-fwpolicy/TestRecord.md index 28d05e8d7..9820eeb4a 100644 --- a/quickstart/101-azfw-with-fwpolicy/TestRecord.md +++ b/quickstart/101-azfw-with-fwpolicy/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 03:23 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 06:45 UTC Success: true diff --git a/quickstart/101-azure-api-management-create/TestRecord.md b/quickstart/101-azure-api-management-create/TestRecord.md index 59d5a1c6a..8e2f96292 100644 --- a/quickstart/101-azure-api-management-create/TestRecord.md +++ b/quickstart/101-azure-api-management-create/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 03:24 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 06:43 UTC Success: true diff --git a/quickstart/101-azure-cognitive-search/TestRecord.md b/quickstart/101-azure-cognitive-search/TestRecord.md index 0d965849f..61db6639d 100644 --- a/quickstart/101-azure-cognitive-search/TestRecord.md +++ b/quickstart/101-azure-cognitive-search/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 02:59 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 06:19 UTC Success: true diff --git a/quickstart/101-azure-virtual-desktop-anf/TestRecord.md b/quickstart/101-azure-virtual-desktop-anf/TestRecord.md index f29c34868..77da9a3ef 100644 --- a/quickstart/101-azure-virtual-desktop-anf/TestRecord.md +++ b/quickstart/101-azure-virtual-desktop-anf/TestRecord.md @@ -1,3 +1,21 @@ +## 19 Nov 23 02:58 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.46.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 06:17 UTC Success: false diff --git a/quickstart/101-azure-virtual-desktop/TestRecord.md b/quickstart/101-azure-virtual-desktop/TestRecord.md index 1beffc4b2..3c45c4225 100644 --- a/quickstart/101-azure-virtual-desktop/TestRecord.md +++ b/quickstart/101-azure-virtual-desktop/TestRecord.md @@ -1,3 +1,21 @@ +## 19 Nov 23 02:58 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.46.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 06:17 UTC Success: false diff --git a/quickstart/101-batch-account-with-storage/TestRecord.md b/quickstart/101-batch-account-with-storage/TestRecord.md index ee13a1995..f837ffd2c 100644 --- a/quickstart/101-batch-account-with-storage/TestRecord.md +++ b/quickstart/101-batch-account-with-storage/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 02:58 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 06:17 UTC Success: true diff --git a/quickstart/101-cdn-with-custom-origin/TestRecord.md b/quickstart/101-cdn-with-custom-origin/TestRecord.md index fca5bf012..804638f61 100644 --- a/quickstart/101-cdn-with-custom-origin/TestRecord.md +++ b/quickstart/101-cdn-with-custom-origin/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 02:57 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 06:21 UTC Success: true diff --git a/quickstart/101-cognitive-services-account/TestRecord.md b/quickstart/101-cognitive-services-account/TestRecord.md index af5785d74..c4ba2c17f 100644 --- a/quickstart/101-cognitive-services-account/TestRecord.md +++ b/quickstart/101-cognitive-services-account/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 02:51 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 06:15 UTC Success: true diff --git a/quickstart/101-cosmos-db-aad-rbac/TestRecord.md b/quickstart/101-cosmos-db-aad-rbac/TestRecord.md index b7b3a4e53..78885b788 100644 --- a/quickstart/101-cosmos-db-aad-rbac/TestRecord.md +++ b/quickstart/101-cosmos-db-aad-rbac/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 02:56 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 06:14 UTC Success: true diff --git a/quickstart/101-cosmos-db-analyticalstore/TestRecord.md b/quickstart/101-cosmos-db-analyticalstore/TestRecord.md index fbd2c19fb..45d29c372 100644 --- a/quickstart/101-cosmos-db-analyticalstore/TestRecord.md +++ b/quickstart/101-cosmos-db-analyticalstore/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 02:50 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 05:59 UTC Success: true diff --git a/quickstart/101-cosmos-db-autoscale/TestRecord.md b/quickstart/101-cosmos-db-autoscale/TestRecord.md index ce8fa8eba..9561d6554 100644 --- a/quickstart/101-cosmos-db-autoscale/TestRecord.md +++ b/quickstart/101-cosmos-db-autoscale/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 02:42 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 05:45 UTC Success: true diff --git a/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md b/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md index 669084fec..18f0c0a30 100644 --- a/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md +++ b/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 02:35 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 05:32 UTC Success: true diff --git a/quickstart/101-cosmos-db-free-tier/TestRecord.md b/quickstart/101-cosmos-db-free-tier/TestRecord.md index dd145f98b..434e6cfb3 100644 --- a/quickstart/101-cosmos-db-free-tier/TestRecord.md +++ b/quickstart/101-cosmos-db-free-tier/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 02:29 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 05:18 UTC Success: true diff --git a/quickstart/101-cosmos-db-manualscale/TestRecord.md b/quickstart/101-cosmos-db-manualscale/TestRecord.md index 39c5dbd3c..90e6d97ea 100644 --- a/quickstart/101-cosmos-db-manualscale/TestRecord.md +++ b/quickstart/101-cosmos-db-manualscale/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 02:21 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 05:05 UTC Success: true diff --git a/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md b/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md index 7e8fdf261..91f01a45c 100644 --- a/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md +++ b/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 02:17 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 04:53 UTC Success: true diff --git a/quickstart/101-databricks-cmk-dbfs/TestRecord.md b/quickstart/101-databricks-cmk-dbfs/TestRecord.md index 4993816df..af364b8ac 100644 --- a/quickstart/101-databricks-cmk-dbfs/TestRecord.md +++ b/quickstart/101-databricks-cmk-dbfs/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 02:08 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 04:39 UTC Success: true diff --git a/quickstart/101-ddos-protection-plan/TestRecord.md b/quickstart/101-ddos-protection-plan/TestRecord.md index c85416372..3e66131de 100644 --- a/quickstart/101-ddos-protection-plan/TestRecord.md +++ b/quickstart/101-ddos-protection-plan/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 02:00 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 04:31 UTC Success: true diff --git a/quickstart/101-devtest-labs/TestRecord.md b/quickstart/101-devtest-labs/TestRecord.md index 3bf5a8932..030ca3f2a 100644 --- a/quickstart/101-devtest-labs/TestRecord.md +++ b/quickstart/101-devtest-labs/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 02:03 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 15 Nov 23 05:03 UTC Success: true diff --git a/quickstart/101-dns_zone/TestRecord.md b/quickstart/101-dns_zone/TestRecord.md index 122d4a34d..f950d8880 100644 --- a/quickstart/101-dns_zone/TestRecord.md +++ b/quickstart/101-dns_zone/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 01:45 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 03:59 UTC Success: true diff --git a/quickstart/101-firewall-standard/TestRecord.md b/quickstart/101-firewall-standard/TestRecord.md index 1b3edf02c..65e37e5d5 100644 --- a/quickstart/101-firewall-standard/TestRecord.md +++ b/quickstart/101-firewall-standard/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 01:44 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 03:58 UTC Success: true diff --git a/quickstart/101-front-door-classic/TestRecord.md b/quickstart/101-front-door-classic/TestRecord.md index 553fd53b3..b9212d381 100644 --- a/quickstart/101-front-door-classic/TestRecord.md +++ b/quickstart/101-front-door-classic/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 01:20 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 03:35 UTC Success: true diff --git a/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md b/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md index d64e66010..c9ecaf988 100644 --- a/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md +++ b/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md @@ -1,3 +1,21 @@ +## 19 Nov 23 01:15 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 12 Nov 23 03:31 UTC Success: true diff --git a/quickstart/101-front-door-standard-premium/TestRecord.md b/quickstart/101-front-door-standard-premium/TestRecord.md index 6e03db354..4d93fcf93 100644 --- a/quickstart/101-front-door-standard-premium/TestRecord.md +++ b/quickstart/101-front-door-standard-premium/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 01:09 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 03:26 UTC Success: true diff --git a/quickstart/101-key-vault-key/TestRecord.md b/quickstart/101-key-vault-key/TestRecord.md index 296306020..d0d264c11 100644 --- a/quickstart/101-key-vault-key/TestRecord.md +++ b/quickstart/101-key-vault-key/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 01:06 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 03:23 UTC Success: true diff --git a/quickstart/101-machine-learning/TestRecord.md b/quickstart/101-machine-learning/TestRecord.md index 6953f4b00..5e50ebf21 100644 --- a/quickstart/101-machine-learning/TestRecord.md +++ b/quickstart/101-machine-learning/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 01:02 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 14 Nov 23 14:43 UTC Success: true diff --git a/quickstart/101-managed-instance/TestRecord.md b/quickstart/101-managed-instance/TestRecord.md index 4fe3653d7..9de7f1ae4 100644 --- a/quickstart/101-managed-instance/TestRecord.md +++ b/quickstart/101-managed-instance/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 01:59 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 15 Nov 23 06:12 UTC Success: true diff --git a/quickstart/101-managed-lustre-create-filesystem/TestRecord.md b/quickstart/101-managed-lustre-create-filesystem/TestRecord.md index 4a58bfe23..28be34575 100644 --- a/quickstart/101-managed-lustre-create-filesystem/TestRecord.md +++ b/quickstart/101-managed-lustre-create-filesystem/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 00:54 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 03:12 UTC Success: true diff --git a/quickstart/101-notification-hub/TestRecord.md b/quickstart/101-notification-hub/TestRecord.md index 586ff86a7..4715151a9 100644 --- a/quickstart/101-notification-hub/TestRecord.md +++ b/quickstart/101-notification-hub/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 00:34 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:52 UTC Success: true diff --git a/quickstart/101-resource-group/TestRecord.md b/quickstart/101-resource-group/TestRecord.md index 7d955b78d..6e854ebd1 100644 --- a/quickstart/101-resource-group/TestRecord.md +++ b/quickstart/101-resource-group/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 00:28 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:47 UTC Success: true diff --git a/quickstart/101-sql-database/TestRecord.md b/quickstart/101-sql-database/TestRecord.md index 7d10d1de3..5ad826f03 100644 --- a/quickstart/101-sql-database/TestRecord.md +++ b/quickstart/101-sql-database/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 00:33 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:50 UTC Success: true diff --git a/quickstart/101-sql-security-alert-policy/TestRecord.md b/quickstart/101-sql-security-alert-policy/TestRecord.md index 9eb80f32c..049b9034b 100644 --- a/quickstart/101-sql-security-alert-policy/TestRecord.md +++ b/quickstart/101-sql-security-alert-policy/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 00:28 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:46 UTC Success: true diff --git a/quickstart/101-storage-account-with-static-website/TestRecord.md b/quickstart/101-storage-account-with-static-website/TestRecord.md index 835fba8d8..b8fb0bcc6 100644 --- a/quickstart/101-storage-account-with-static-website/TestRecord.md +++ b/quickstart/101-storage-account-with-static-website/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 00:25 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 14 Nov 23 01:40 UTC Success: true diff --git a/quickstart/101-storage-static-website/TestRecord.md b/quickstart/101-storage-static-website/TestRecord.md index b72eaecf3..8118019b1 100644 --- a/quickstart/101-storage-static-website/TestRecord.md +++ b/quickstart/101-storage-static-website/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 00:24 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 12 Nov 23 02:41 UTC Success: true diff --git a/quickstart/101-stream-analytics-job/TestRecord.md b/quickstart/101-stream-analytics-job/TestRecord.md index b0177b4c8..e4b981673 100644 --- a/quickstart/101-stream-analytics-job/TestRecord.md +++ b/quickstart/101-stream-analytics-job/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 00:22 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:40 UTC Success: true diff --git a/quickstart/101-synapse/TestRecord.md b/quickstart/101-synapse/TestRecord.md index f5b1fa2d1..7de64be40 100644 --- a/quickstart/101-synapse/TestRecord.md +++ b/quickstart/101-synapse/TestRecord.md @@ -1,3 +1,21 @@ +## 19 Nov 23 00:28 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/http v3.4.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:45 UTC Success: true diff --git a/quickstart/101-traffic-manager-external-endpoint/TestRecord.md b/quickstart/101-traffic-manager-external-endpoint/TestRecord.md index 8614dce2a..00fc99e62 100644 --- a/quickstart/101-traffic-manager-external-endpoint/TestRecord.md +++ b/quickstart/101-traffic-manager-external-endpoint/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 00:19 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:36 UTC Success: true diff --git a/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md b/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md index 7285e5c6d..a604d1b1f 100644 --- a/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md +++ b/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 00:22 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:39 UTC Success: true diff --git a/quickstart/101-vm-auto-shutdown/TestRecord.md b/quickstart/101-vm-auto-shutdown/TestRecord.md index be4f2d9db..f257c0539 100644 --- a/quickstart/101-vm-auto-shutdown/TestRecord.md +++ b/quickstart/101-vm-auto-shutdown/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 00:18 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:35 UTC Success: true diff --git a/quickstart/101-vm-cluster-linux/TestRecord.md b/quickstart/101-vm-cluster-linux/TestRecord.md index 6d7beb841..8d6fb27ba 100644 --- a/quickstart/101-vm-cluster-linux/TestRecord.md +++ b/quickstart/101-vm-cluster-linux/TestRecord.md @@ -1,3 +1,21 @@ +## 19 Nov 23 05:59 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:33 UTC Success: true diff --git a/quickstart/101-vm-cluster-windows/TestRecord.md b/quickstart/101-vm-cluster-windows/TestRecord.md index 4ca95bae1..5dfd9a1be 100644 --- a/quickstart/101-vm-cluster-windows/TestRecord.md +++ b/quickstart/101-vm-cluster-windows/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 05:59 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:31 UTC Success: true diff --git a/quickstart/101-vm-with-infrastructure/TestRecord.md b/quickstart/101-vm-with-infrastructure/TestRecord.md index d4145b7d2..7dbb8c188 100644 --- a/quickstart/101-vm-with-infrastructure/TestRecord.md +++ b/quickstart/101-vm-with-infrastructure/TestRecord.md @@ -1,3 +1,21 @@ +## 19 Nov 23 05:53 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:27 UTC Success: true diff --git a/quickstart/101-web-app-linux-container/TestRecord.md b/quickstart/101-web-app-linux-container/TestRecord.md index 537d3d6db..28665b4e1 100644 --- a/quickstart/101-web-app-linux-container/TestRecord.md +++ b/quickstart/101-web-app-linux-container/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 05:55 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:23 UTC Success: true diff --git a/quickstart/101-web-app-linux-java/TestRecord.md b/quickstart/101-web-app-linux-java/TestRecord.md index 3117cb68d..32df47c56 100644 --- a/quickstart/101-web-app-linux-java/TestRecord.md +++ b/quickstart/101-web-app-linux-java/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 05:55 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:22 UTC Success: true diff --git a/quickstart/101-web-app-windows-dotnet/TestRecord.md b/quickstart/101-web-app-windows-dotnet/TestRecord.md index 4096af604..44772e4f7 100644 --- a/quickstart/101-web-app-windows-dotnet/TestRecord.md +++ b/quickstart/101-web-app-windows-dotnet/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 05:31 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:20 UTC Success: true diff --git a/quickstart/101-windows-vm-with-iis-server/TestRecord.md b/quickstart/101-windows-vm-with-iis-server/TestRecord.md index 41a133c3a..fa95d4bbf 100644 --- a/quickstart/101-windows-vm-with-iis-server/TestRecord.md +++ b/quickstart/101-windows-vm-with-iis-server/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 05:53 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:28 UTC Success: true diff --git a/quickstart/201-aks-acr-identity/TestRecord.md b/quickstart/201-aks-acr-identity/TestRecord.md index a4dda9b47..c4c71f313 100644 --- a/quickstart/201-aks-acr-identity/TestRecord.md +++ b/quickstart/201-aks-acr-identity/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 05:44 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:14 UTC Success: false diff --git a/quickstart/201-aks-helm/TestRecord.md b/quickstart/201-aks-helm/TestRecord.md index de6de83d8..e7ac7d474 100644 --- a/quickstart/201-aks-helm/TestRecord.md +++ b/quickstart/201-aks-helm/TestRecord.md @@ -1,3 +1,21 @@ +## 19 Nov 23 05:49 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/helm v2.9.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:18 UTC Success: true diff --git a/quickstart/201-aks-log-analytics/TestRecord.md b/quickstart/201-aks-log-analytics/TestRecord.md index df31ec100..ff62ab803 100644 --- a/quickstart/201-aks-log-analytics/TestRecord.md +++ b/quickstart/201-aks-log-analytics/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 05:41 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 12 Nov 23 02:12 UTC Success: true diff --git a/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md b/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md index 28574f201..442896671 100644 --- a/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md +++ b/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md @@ -1,3 +1,21 @@ +## 19 Nov 23 04:26 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/kubernetes v2.23.0 ++ provider registry.terraform.io/hashicorp/random v3.3.2 + +### Error + + + +--- + ## 12 Nov 23 02:08 UTC Success: true diff --git a/quickstart/201-azfw-multi-addresses/TestRecord.md b/quickstart/201-azfw-multi-addresses/TestRecord.md index ad52ebcc2..65fc913aa 100644 --- a/quickstart/201-azfw-multi-addresses/TestRecord.md +++ b/quickstart/201-azfw-multi-addresses/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 05:38 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 02:03 UTC Success: true diff --git a/quickstart/201-azfw-with-avzones/TestRecord.md b/quickstart/201-azfw-with-avzones/TestRecord.md index d90438e07..0fa9be0e6 100644 --- a/quickstart/201-azfw-with-avzones/TestRecord.md +++ b/quickstart/201-azfw-with-avzones/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 05:19 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 01:45 UTC Success: true diff --git a/quickstart/201-azfw-with-ipgroups/TestRecord.md b/quickstart/201-azfw-with-ipgroups/TestRecord.md index 424739d6e..e94d4a225 100644 --- a/quickstart/201-azfw-with-ipgroups/TestRecord.md +++ b/quickstart/201-azfw-with-ipgroups/TestRecord.md @@ -1,3 +1,21 @@ +## 19 Nov 23 05:01 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 01:26 UTC Success: true diff --git a/quickstart/201-azfw-with-secure-hub/TestRecord.md b/quickstart/201-azfw-with-secure-hub/TestRecord.md index 771d9a823..48025d20e 100644 --- a/quickstart/201-azfw-with-secure-hub/TestRecord.md +++ b/quickstart/201-azfw-with-secure-hub/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 05:30 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 01:57 UTC Success: true diff --git a/quickstart/201-azure-pipelines-ci-cd/TestRecord.md b/quickstart/201-azure-pipelines-ci-cd/TestRecord.md index 4b19ca475..946972162 100644 --- a/quickstart/201-azure-pipelines-ci-cd/TestRecord.md +++ b/quickstart/201-azure-pipelines-ci-cd/TestRecord.md @@ -1,3 +1,18 @@ +## 19 Nov 23 04:40 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 + +### Error + + + +--- + ## 12 Nov 23 01:10 UTC Success: true diff --git a/quickstart/201-confidential-os-disk/TestRecord.md b/quickstart/201-confidential-os-disk/TestRecord.md index dec2275cb..6391eaf7b 100644 --- a/quickstart/201-confidential-os-disk/TestRecord.md +++ b/quickstart/201-confidential-os-disk/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 04:40 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 01:09 UTC Success: true diff --git a/quickstart/201-confidential-vm/TestRecord.md b/quickstart/201-confidential-vm/TestRecord.md index 91e071734..a0b1e89d7 100644 --- a/quickstart/201-confidential-vm/TestRecord.md +++ b/quickstart/201-confidential-vm/TestRecord.md @@ -1,3 +1,21 @@ +## 19 Nov 23 04:40 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 12 Nov 23 01:08 UTC Success: true diff --git a/quickstart/201-confidential-vmss/TestRecord.md b/quickstart/201-confidential-vmss/TestRecord.md index f0ce4d6ad..492a1c700 100644 --- a/quickstart/201-confidential-vmss/TestRecord.md +++ b/quickstart/201-confidential-vmss/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 04:38 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 01:02 UTC Success: true diff --git a/quickstart/201-function-app-key-vault-ref/TestRecord.md b/quickstart/201-function-app-key-vault-ref/TestRecord.md index 580f52418..4636ab7e6 100644 --- a/quickstart/201-function-app-key-vault-ref/TestRecord.md +++ b/quickstart/201-function-app-key-vault-ref/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 04:33 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 17 Nov 23 02:32 UTC Success: true diff --git a/quickstart/201-function-app/TestRecord.md b/quickstart/201-function-app/TestRecord.md index 34137b273..1d0cebe6a 100644 --- a/quickstart/201-function-app/TestRecord.md +++ b/quickstart/201-function-app/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 04:35 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 17 Nov 23 02:29 UTC Success: true diff --git a/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md b/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md index 685c35ccc..9b5fb0e53 100644 --- a/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md +++ b/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 03:38 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 00:55 UTC Success: true diff --git a/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md b/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md index 7efdaad36..a3ea04abf 100644 --- a/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md +++ b/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 04:34 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 01:10 UTC Success: true diff --git a/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md b/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md index 23de267dc..25192ba7c 100644 --- a/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md +++ b/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md @@ -1,3 +1,22 @@ +## 19 Nov 23 04:10 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 ++ provider registry.terraform.io/hashicorp/time v0.9.1 + +### Error + + + +--- + ## 12 Nov 23 00:46 UTC Success: true diff --git a/quickstart/201-machine-learning-moderately-secure/TestRecord.md b/quickstart/201-machine-learning-moderately-secure/TestRecord.md index 668e64e17..010796fea 100644 --- a/quickstart/201-machine-learning-moderately-secure/TestRecord.md +++ b/quickstart/201-machine-learning-moderately-secure/TestRecord.md @@ -1,3 +1,21 @@ +## 19 Nov 23 04:01 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 ++ provider registry.terraform.io/hashicorp/random v3.5.1 ++ provider registry.terraform.io/orobix/azureml v0.0.5 + +### Error + + + +--- + ## 12 Nov 23 00:37 UTC Success: false diff --git a/quickstart/201-mysql-fs-db/TestRecord.md b/quickstart/201-mysql-fs-db/TestRecord.md index feefcf31d..7a273d8a3 100644 --- a/quickstart/201-mysql-fs-db/TestRecord.md +++ b/quickstart/201-mysql-fs-db/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 04:16 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 14 Nov 23 14:38 UTC Success: true diff --git a/quickstart/201-postgresql-fs-db/TestRecord.md b/quickstart/201-postgresql-fs-db/TestRecord.md index 2f5bb7e02..1f4134c56 100644 --- a/quickstart/201-postgresql-fs-db/TestRecord.md +++ b/quickstart/201-postgresql-fs-db/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 04:01 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 17 Nov 23 02:39 UTC Success: true diff --git a/quickstart/201-synapse-secure/TestRecord.md b/quickstart/201-synapse-secure/TestRecord.md index be8a897c7..b918dd198 100644 --- a/quickstart/201-synapse-secure/TestRecord.md +++ b/quickstart/201-synapse-secure/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 03:52 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.32.0 ++ provider registry.terraform.io/hashicorp/http v3.4.0 + +### Error + + + +--- + ## 12 Nov 23 00:30 UTC Success: false diff --git a/quickstart/201-vm-disk-encryption-extension/TestRecord.md b/quickstart/201-vm-disk-encryption-extension/TestRecord.md index cd0807021..c9d5baae7 100644 --- a/quickstart/201-vm-disk-encryption-extension/TestRecord.md +++ b/quickstart/201-vm-disk-encryption-extension/TestRecord.md @@ -1,3 +1,22 @@ +## 19 Nov 23 03:57 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/local v2.3.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 12 Nov 23 00:37 UTC Success: true diff --git a/quickstart/201-vmss-disk-encryption-extension/TestRecord.md b/quickstart/201-vmss-disk-encryption-extension/TestRecord.md index e5ebdd109..2ba7625d6 100644 --- a/quickstart/201-vmss-disk-encryption-extension/TestRecord.md +++ b/quickstart/201-vmss-disk-encryption-extension/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 03:52 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 17 Nov 23 03:01 UTC Success: true diff --git a/quickstart/201-vmss-jumpbox/TestRecord.md b/quickstart/201-vmss-jumpbox/TestRecord.md index 6e1f2d278..50d5f9b7a 100644 --- a/quickstart/201-vmss-jumpbox/TestRecord.md +++ b/quickstart/201-vmss-jumpbox/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 03:48 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 17 Nov 23 03:07 UTC Success: true diff --git a/quickstart/201-web-app-docker-acr/TestRecord.md b/quickstart/201-web-app-docker-acr/TestRecord.md index 4a5f9fd92..6b7b93bae 100644 --- a/quickstart/201-web-app-docker-acr/TestRecord.md +++ b/quickstart/201-web-app-docker-acr/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 03:43 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 00:24 UTC Success: true diff --git a/quickstart/201-web-app-postgres-keyvault/TestRecord.md b/quickstart/201-web-app-postgres-keyvault/TestRecord.md index c139a728b..264979bd3 100644 --- a/quickstart/201-web-app-postgres-keyvault/TestRecord.md +++ b/quickstart/201-web-app-postgres-keyvault/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 03:43 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 00:25 UTC Success: true diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md b/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md index 56d7756ca..f8c9f7d09 100644 --- a/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md @@ -1,3 +1,35 @@ +## 19 Nov 23 03:39 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... + +Initializing provider plugins... +- Finding hashicorp/azurerm versions matching "2.78.0"... +- Finding latest version of telemaco019/azureml... +- Finding latest version of hashicorp/random... +- Installing telemaco019/azureml v0.0.5... +- Installing hashicorp/random v3.5.1... +- Installed hashicorp/random v3.5.1 (signed by HashiCorp) +- Installing hashicorp/azurerm v2.78.0... +- Installed hashicorp/azurerm v2.78.0 (signed by HashiCorp) + +Error: Failed to install provider + +Error while installing telemaco019/azureml v0.0.5: checksum list has no +SHA-256 hash for +"https://github.com/orobix/terraform-provider-azureml/releases/download/v0.0.5/terraform-provider-azureml_0.0.5_linux_amd64.zip" + + +--- + ## 12 Nov 23 06:51 UTC Success: false diff --git a/quickstart/301-aks-enterprise/TestRecord.md b/quickstart/301-aks-enterprise/TestRecord.md index b87e006ea..8eac6036e 100644 --- a/quickstart/301-aks-enterprise/TestRecord.md +++ b/quickstart/301-aks-enterprise/TestRecord.md @@ -1,3 +1,296 @@ +## 19 Nov 23 03:39 UTC + +Success: false + +### Versions + + + +### Error + + +Terraform encountered problems during initialisation, including problems +with the configuration, described below. + +The Terraform configuration must be valid before initialization so that +Terraform can determine which modules and providers need to be installed. +Initializing the backend... + +Warning: Quoted references are deprecated + + on aks.tf line 6, in resource "azurerm_kubernetes_cluster" "default": + 6: depends_on = ["azurerm_role_assignment.default"] + +In this context, references are expected literally rather than in quotes. +Terraform 0.11 and earlier required quotes, but quoted references are now +deprecated and will be removed in a future version of Terraform. Remove the +quotes surrounding this reference to silence this warning. + +(and 5 more similar warnings elsewhere) + + +Error: Invalid quoted type constraints + + on variables.tf line 3, in variable "name": + 3: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 3, in variable "name": + 3: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 9, in variable "environment": + 9: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 9, in variable "environment": + 9: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 17, in variable "location": + 17: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 17, in variable "location": + 17: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 25, in variable "node_count": + 25: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 25, in variable "node_count": + 25: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 31, in variable "node_type": + 31: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 31, in variable "node_type": + 31: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 37, in variable "node_os": + 37: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 37, in variable "node_os": + 37: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 43, in variable "dns_prefix": + 43: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 43, in variable "dns_prefix": + 43: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 51, in variable "vnet_address_space": + 51: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 51, in variable "vnet_address_space": + 51: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 57, in variable "vnet_aks_subnet_space": + 57: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 57, in variable "vnet_aks_subnet_space": + 57: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 63, in variable "vnet_ingress_subnet_space": + 63: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 63, in variable "vnet_ingress_subnet_space": + 63: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 69, in variable "vnet_gateway_subnet_space": + 69: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 69, in variable "vnet_gateway_subnet_space": + 69: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 75, in variable "ingress_load_balancer_ip": + 75: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 75, in variable "ingress_load_balancer_ip": + 75: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 82, in variable "gateway_instance_count": + 82: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 82, in variable "gateway_instance_count": + 82: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +--- + ## 12 Nov 23 06:51 UTC Success: false diff --git a/quickstart/301-aks-private-cluster/TestRecord.md b/quickstart/301-aks-private-cluster/TestRecord.md index e3a840a6a..311685bdd 100644 --- a/quickstart/301-aks-private-cluster/TestRecord.md +++ b/quickstart/301-aks-private-cluster/TestRecord.md @@ -1,3 +1,20 @@ +## 19 Nov 23 03:39 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/null v3.2.1 + +### Error + + + +--- + ## 12 Nov 23 06:51 UTC Success: false diff --git a/quickstart/301-hub-spoke/TestRecord.md b/quickstart/301-hub-spoke/TestRecord.md index 4869d3289..eb6acdba9 100644 --- a/quickstart/301-hub-spoke/TestRecord.md +++ b/quickstart/301-hub-spoke/TestRecord.md @@ -1,3 +1,19 @@ +## 19 Nov 23 03:39 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 + +### Error + + + +--- + ## 12 Nov 23 06:51 UTC Success: false diff --git a/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md b/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md index a1a04bf19..a8345bc91 100644 --- a/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md +++ b/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md @@ -1,3 +1,35 @@ +## 19 Nov 23 03:39 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... + +Initializing provider plugins... +- Finding hashicorp/azurerm versions matching "2.78.0"... +- Finding latest version of telemaco019/azureml... +- Finding latest version of hashicorp/random... +- Installing hashicorp/azurerm v2.78.0... +- Installed hashicorp/azurerm v2.78.0 (signed by HashiCorp) +- Installing telemaco019/azureml v0.0.5... +- Installing hashicorp/random v3.5.1... +- Installed hashicorp/random v3.5.1 (signed by HashiCorp) + +Error: Failed to install provider + +Error while installing telemaco019/azureml v0.0.5: checksum list has no +SHA-256 hash for +"https://github.com/orobix/terraform-provider-azureml/releases/download/v0.0.5/terraform-provider-azureml_0.0.5_linux_amd64.zip" + + +--- + ## 12 Nov 23 06:51 UTC Success: false diff --git a/quickstart/301-service-fabric-apim/TestRecord.md b/quickstart/301-service-fabric-apim/TestRecord.md index 90c11d493..4a10cbe3d 100644 --- a/quickstart/301-service-fabric-apim/TestRecord.md +++ b/quickstart/301-service-fabric-apim/TestRecord.md @@ -1,3 +1,21 @@ +## 19 Nov 23 03:38 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.46.0 ++ provider registry.terraform.io/hashicorp/azurerm v1.36.1 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 06:51 UTC Success: false diff --git a/quickstart/301-service-fabric/TestRecord.md b/quickstart/301-service-fabric/TestRecord.md index 4f0f49823..174cbacc4 100644 --- a/quickstart/301-service-fabric/TestRecord.md +++ b/quickstart/301-service-fabric/TestRecord.md @@ -1,3 +1,21 @@ +## 19 Nov 23 03:38 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.46.0 ++ provider registry.terraform.io/hashicorp/azurerm v1.36.1 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 12 Nov 23 06:51 UTC Success: false diff --git a/quickstart/template/TestRecord.md b/quickstart/template/TestRecord.md index a267e9265..4f263a45e 100644 --- a/quickstart/template/TestRecord.md +++ b/quickstart/template/TestRecord.md @@ -1,3 +1,19 @@ +## 19 Nov 23 03:38 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.56.0 + +### Error + + + +--- + ## 12 Nov 23 06:51 UTC Success: false From dcad1a24c32ae9ba958ab8a0095f6e06547bcfe9 Mon Sep 17 00:00:00 2001 From: Neil Ye Date: Thu, 23 Nov 2023 10:41:55 +0800 Subject: [PATCH 24/64] Fix 201-aks-acr-identity (#292) --- quickstart/201-aks-acr-identity/acr.tf | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/quickstart/201-aks-acr-identity/acr.tf b/quickstart/201-aks-acr-identity/acr.tf index d5a750c9f..6fa1185cb 100644 --- a/quickstart/201-aks-acr-identity/acr.tf +++ b/quickstart/201-aks-acr-identity/acr.tf @@ -1,10 +1,10 @@ locals { - acr_name = "${replace(var.dns_prefix, "-", "")}${replace(var.name, "-", "")}acr" + acr_name = "${replace(var.dns_prefix, "-", "")}${replace(random_pet.rg.id, "-", "")}acr" } resource "azurerm_container_registry" "default" { - name = local.acr_name - resource_group_name = azurerm_resource_group.default.name - location = azurerm_resource_group.default.location - sku = "Standard" - admin_enabled = false -} \ No newline at end of file + name = local.acr_name + resource_group_name = azurerm_resource_group.default.name + location = azurerm_resource_group.default.location + sku = "Standard" + admin_enabled = false +} From a09aa80fe9a18327a29ceff9aa7003828575e753 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 23 Nov 2023 02:42:08 +0000 Subject: [PATCH 25/64] Update TestRecord --- quickstart/201-aks-acr-identity/TestRecord.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/quickstart/201-aks-acr-identity/TestRecord.md b/quickstart/201-aks-acr-identity/TestRecord.md index c4c71f313..215e0e083 100644 --- a/quickstart/201-aks-acr-identity/TestRecord.md +++ b/quickstart/201-aks-acr-identity/TestRecord.md @@ -1,3 +1,20 @@ +## 21 Nov 23 07:41 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.81.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 05:44 UTC Success: false From 9edb2d544f538c4be4c75c791710a952b05925af Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 26 Nov 2023 06:22:08 +0000 Subject: [PATCH 26/64] Update TestRecord --- .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-application-gateway/TestRecord.md | 17 + .../101-attestation-provider/TestRecord.md | 18 ++ .../TestRecord.md | 18 ++ .../101-azapi-lab-services/TestRecord.md | 17 + .../101-azfw-with-fwpolicy/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-azure-cognitive-search/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../101-azure-virtual-desktop/TestRecord.md | 18 ++ .../TestRecord.md | 17 + .../101-cdn-with-custom-origin/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-aad-rbac/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-autoscale/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-free-tier/TestRecord.md | 17 + .../101-cosmos-db-manualscale/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-databricks-cmk-dbfs/TestRecord.md | 17 + .../101-ddos-protection-plan/TestRecord.md | 17 + quickstart/101-devtest-labs/TestRecord.md | 17 + quickstart/101-dns_zone/TestRecord.md | 17 + .../101-firewall-standard/TestRecord.md | 17 + .../101-front-door-classic/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../TestRecord.md | 17 + quickstart/101-key-vault-key/TestRecord.md | 17 + quickstart/101-machine-learning/TestRecord.md | 17 + quickstart/101-managed-instance/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/101-notification-hub/TestRecord.md | 17 + quickstart/101-resource-group/TestRecord.md | 17 + quickstart/101-sql-database/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-storage-static-website/TestRecord.md | 17 + .../101-stream-analytics-job/TestRecord.md | 17 + quickstart/101-synapse/TestRecord.md | 18 ++ .../TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/101-vm-auto-shutdown/TestRecord.md | 17 + quickstart/101-vm-cluster-linux/TestRecord.md | 18 ++ .../101-vm-cluster-windows/TestRecord.md | 17 + .../101-vm-with-infrastructure/TestRecord.md | 18 ++ .../101-web-app-linux-container/TestRecord.md | 17 + .../101-web-app-linux-java/TestRecord.md | 17 + .../101-web-app-windows-dotnet/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/201-aks-acr-identity/TestRecord.md | 17 + quickstart/201-aks-helm/TestRecord.md | 18 ++ .../201-aks-log-analytics/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../201-azfw-multi-addresses/TestRecord.md | 17 + .../201-azfw-with-avzones/TestRecord.md | 17 + .../201-azfw-with-ipgroups/TestRecord.md | 18 ++ .../201-azfw-with-secure-hub/TestRecord.md | 17 + .../201-azure-pipelines-ci-cd/TestRecord.md | 15 + .../201-confidential-os-disk/TestRecord.md | 17 + quickstart/201-confidential-vm/TestRecord.md | 18 ++ .../201-confidential-vmss/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/201-function-app/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 18 ++ quickstart/201-mysql-fs-db/TestRecord.md | 17 + quickstart/201-postgresql-fs-db/TestRecord.md | 17 + quickstart/201-synapse-secure/TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 17 + quickstart/201-vmss-jumpbox/TestRecord.md | 17 + .../201-web-app-docker-acr/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 32 ++ quickstart/301-aks-enterprise/TestRecord.md | 293 ++++++++++++++++++ .../301-aks-private-cluster/TestRecord.md | 17 + quickstart/301-hub-spoke/TestRecord.md | 16 + .../TestRecord.md | 32 ++ .../301-service-fabric-apim/TestRecord.md | 18 ++ quickstart/301-service-fabric/TestRecord.md | 18 ++ quickstart/template/TestRecord.md | 16 + 85 files changed, 1766 insertions(+) diff --git a/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md b/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md index f67cd083b..a27108e5f 100644 --- a/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md +++ b/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 00:23 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 00:16 UTC Success: true diff --git a/quickstart/101-analysis-services-create/TestRecord.md b/quickstart/101-analysis-services-create/TestRecord.md index f9ff1606d..ddde40363 100644 --- a/quickstart/101-analysis-services-create/TestRecord.md +++ b/quickstart/101-analysis-services-create/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 06:10 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 03:31 UTC Success: true diff --git a/quickstart/101-application-gateway/TestRecord.md b/quickstart/101-application-gateway/TestRecord.md index ee1c25493..cf19147ad 100644 --- a/quickstart/101-application-gateway/TestRecord.md +++ b/quickstart/101-application-gateway/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 06:21 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 03:41 UTC Success: true diff --git a/quickstart/101-attestation-provider/TestRecord.md b/quickstart/101-attestation-provider/TestRecord.md index 50623a8c7..55989ce28 100644 --- a/quickstart/101-attestation-provider/TestRecord.md +++ b/quickstart/101-attestation-provider/TestRecord.md @@ -1,3 +1,21 @@ +## 26 Nov 23 06:07 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 19 Nov 23 03:25 UTC Success: true diff --git a/quickstart/101-azapi-eventhub-network-rules/TestRecord.md b/quickstart/101-azapi-eventhub-network-rules/TestRecord.md index 8561a71c0..e980c449a 100644 --- a/quickstart/101-azapi-eventhub-network-rules/TestRecord.md +++ b/quickstart/101-azapi-eventhub-network-rules/TestRecord.md @@ -1,3 +1,21 @@ +## 26 Nov 23 05:43 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v0.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 ++ provider registry.terraform.io/hashicorp/random v3.1.2 + +### Error + + + +--- + ## 19 Nov 23 03:28 UTC Success: true diff --git a/quickstart/101-azapi-lab-services/TestRecord.md b/quickstart/101-azapi-lab-services/TestRecord.md index 4a41c17d9..60bb2ed10 100644 --- a/quickstart/101-azapi-lab-services/TestRecord.md +++ b/quickstart/101-azapi-lab-services/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 06:06 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v0.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 + +### Error + + + +--- + ## 19 Nov 23 03:24 UTC Success: false diff --git a/quickstart/101-azfw-with-fwpolicy/TestRecord.md b/quickstart/101-azfw-with-fwpolicy/TestRecord.md index 9820eeb4a..c83823be9 100644 --- a/quickstart/101-azfw-with-fwpolicy/TestRecord.md +++ b/quickstart/101-azfw-with-fwpolicy/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 06:05 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 03:23 UTC Success: true diff --git a/quickstart/101-azure-api-management-create/TestRecord.md b/quickstart/101-azure-api-management-create/TestRecord.md index 8e2f96292..a2da08d45 100644 --- a/quickstart/101-azure-api-management-create/TestRecord.md +++ b/quickstart/101-azure-api-management-create/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 06:06 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 03:24 UTC Success: true diff --git a/quickstart/101-azure-cognitive-search/TestRecord.md b/quickstart/101-azure-cognitive-search/TestRecord.md index 61db6639d..51f626cf6 100644 --- a/quickstart/101-azure-cognitive-search/TestRecord.md +++ b/quickstart/101-azure-cognitive-search/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 05:16 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 02:59 UTC Success: true diff --git a/quickstart/101-azure-virtual-desktop-anf/TestRecord.md b/quickstart/101-azure-virtual-desktop-anf/TestRecord.md index 77da9a3ef..0dcf70b16 100644 --- a/quickstart/101-azure-virtual-desktop-anf/TestRecord.md +++ b/quickstart/101-azure-virtual-desktop-anf/TestRecord.md @@ -1,3 +1,21 @@ +## 26 Nov 23 05:38 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.46.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 02:58 UTC Success: false diff --git a/quickstart/101-azure-virtual-desktop/TestRecord.md b/quickstart/101-azure-virtual-desktop/TestRecord.md index 3c45c4225..967b883a2 100644 --- a/quickstart/101-azure-virtual-desktop/TestRecord.md +++ b/quickstart/101-azure-virtual-desktop/TestRecord.md @@ -1,3 +1,21 @@ +## 26 Nov 23 05:38 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.46.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 02:58 UTC Success: false diff --git a/quickstart/101-batch-account-with-storage/TestRecord.md b/quickstart/101-batch-account-with-storage/TestRecord.md index f837ffd2c..621a537db 100644 --- a/quickstart/101-batch-account-with-storage/TestRecord.md +++ b/quickstart/101-batch-account-with-storage/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 05:38 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 02:58 UTC Success: true diff --git a/quickstart/101-cdn-with-custom-origin/TestRecord.md b/quickstart/101-cdn-with-custom-origin/TestRecord.md index 804638f61..060ec4eaf 100644 --- a/quickstart/101-cdn-with-custom-origin/TestRecord.md +++ b/quickstart/101-cdn-with-custom-origin/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 05:41 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 02:57 UTC Success: true diff --git a/quickstart/101-cognitive-services-account/TestRecord.md b/quickstart/101-cognitive-services-account/TestRecord.md index c4ba2c17f..8bf646759 100644 --- a/quickstart/101-cognitive-services-account/TestRecord.md +++ b/quickstart/101-cognitive-services-account/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 05:32 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 02:51 UTC Success: true diff --git a/quickstart/101-cosmos-db-aad-rbac/TestRecord.md b/quickstart/101-cosmos-db-aad-rbac/TestRecord.md index 78885b788..82a29a342 100644 --- a/quickstart/101-cosmos-db-aad-rbac/TestRecord.md +++ b/quickstart/101-cosmos-db-aad-rbac/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 05:36 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 02:56 UTC Success: true diff --git a/quickstart/101-cosmos-db-analyticalstore/TestRecord.md b/quickstart/101-cosmos-db-analyticalstore/TestRecord.md index 45d29c372..67ce9c728 100644 --- a/quickstart/101-cosmos-db-analyticalstore/TestRecord.md +++ b/quickstart/101-cosmos-db-analyticalstore/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 05:31 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 02:50 UTC Success: true diff --git a/quickstart/101-cosmos-db-autoscale/TestRecord.md b/quickstart/101-cosmos-db-autoscale/TestRecord.md index 9561d6554..796eba4f9 100644 --- a/quickstart/101-cosmos-db-autoscale/TestRecord.md +++ b/quickstart/101-cosmos-db-autoscale/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 04:17 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 02:42 UTC Success: true diff --git a/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md b/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md index 18f0c0a30..f267a1cbc 100644 --- a/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md +++ b/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 05:22 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 02:35 UTC Success: true diff --git a/quickstart/101-cosmos-db-free-tier/TestRecord.md b/quickstart/101-cosmos-db-free-tier/TestRecord.md index 434e6cfb3..3903504c5 100644 --- a/quickstart/101-cosmos-db-free-tier/TestRecord.md +++ b/quickstart/101-cosmos-db-free-tier/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 05:15 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 02:29 UTC Success: true diff --git a/quickstart/101-cosmos-db-manualscale/TestRecord.md b/quickstart/101-cosmos-db-manualscale/TestRecord.md index 90e6d97ea..3e8e19d8f 100644 --- a/quickstart/101-cosmos-db-manualscale/TestRecord.md +++ b/quickstart/101-cosmos-db-manualscale/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 05:09 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 02:21 UTC Success: true diff --git a/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md b/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md index 91f01a45c..9863cce79 100644 --- a/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md +++ b/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 05:02 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 02:17 UTC Success: true diff --git a/quickstart/101-databricks-cmk-dbfs/TestRecord.md b/quickstart/101-databricks-cmk-dbfs/TestRecord.md index af364b8ac..ede596aa0 100644 --- a/quickstart/101-databricks-cmk-dbfs/TestRecord.md +++ b/quickstart/101-databricks-cmk-dbfs/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 04:56 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 02:08 UTC Success: true diff --git a/quickstart/101-ddos-protection-plan/TestRecord.md b/quickstart/101-ddos-protection-plan/TestRecord.md index 3e66131de..884184804 100644 --- a/quickstart/101-ddos-protection-plan/TestRecord.md +++ b/quickstart/101-ddos-protection-plan/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 04:49 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 02:00 UTC Success: true diff --git a/quickstart/101-devtest-labs/TestRecord.md b/quickstart/101-devtest-labs/TestRecord.md index 030ca3f2a..05b3f6408 100644 --- a/quickstart/101-devtest-labs/TestRecord.md +++ b/quickstart/101-devtest-labs/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 04:47 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 02:03 UTC Success: true diff --git a/quickstart/101-dns_zone/TestRecord.md b/quickstart/101-dns_zone/TestRecord.md index f950d8880..b7f6e6498 100644 --- a/quickstart/101-dns_zone/TestRecord.md +++ b/quickstart/101-dns_zone/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 04:28 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 01:45 UTC Success: true diff --git a/quickstart/101-firewall-standard/TestRecord.md b/quickstart/101-firewall-standard/TestRecord.md index 65e37e5d5..92869b845 100644 --- a/quickstart/101-firewall-standard/TestRecord.md +++ b/quickstart/101-firewall-standard/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 04:48 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 01:44 UTC Success: true diff --git a/quickstart/101-front-door-classic/TestRecord.md b/quickstart/101-front-door-classic/TestRecord.md index b9212d381..ebfb5ab86 100644 --- a/quickstart/101-front-door-classic/TestRecord.md +++ b/quickstart/101-front-door-classic/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 04:25 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 01:20 UTC Success: true diff --git a/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md b/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md index c9ecaf988..76189b768 100644 --- a/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md +++ b/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md @@ -1,3 +1,21 @@ +## 26 Nov 23 04:27 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 19 Nov 23 01:15 UTC Success: true diff --git a/quickstart/101-front-door-standard-premium/TestRecord.md b/quickstart/101-front-door-standard-premium/TestRecord.md index 4d93fcf93..27ccb1e6b 100644 --- a/quickstart/101-front-door-standard-premium/TestRecord.md +++ b/quickstart/101-front-door-standard-premium/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 04:20 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 01:09 UTC Success: true diff --git a/quickstart/101-key-vault-key/TestRecord.md b/quickstart/101-key-vault-key/TestRecord.md index d0d264c11..c981aeca6 100644 --- a/quickstart/101-key-vault-key/TestRecord.md +++ b/quickstart/101-key-vault-key/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 04:21 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 01:06 UTC Success: true diff --git a/quickstart/101-machine-learning/TestRecord.md b/quickstart/101-machine-learning/TestRecord.md index 5e50ebf21..88d58ac2e 100644 --- a/quickstart/101-machine-learning/TestRecord.md +++ b/quickstart/101-machine-learning/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 04:17 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 01:02 UTC Success: true diff --git a/quickstart/101-managed-instance/TestRecord.md b/quickstart/101-managed-instance/TestRecord.md index 9de7f1ae4..bea4718a3 100644 --- a/quickstart/101-managed-instance/TestRecord.md +++ b/quickstart/101-managed-instance/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 02:15 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 01:59 UTC Success: true diff --git a/quickstart/101-managed-lustre-create-filesystem/TestRecord.md b/quickstart/101-managed-lustre-create-filesystem/TestRecord.md index 28be34575..c08b0e825 100644 --- a/quickstart/101-managed-lustre-create-filesystem/TestRecord.md +++ b/quickstart/101-managed-lustre-create-filesystem/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 01:03 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 00:54 UTC Success: true diff --git a/quickstart/101-notification-hub/TestRecord.md b/quickstart/101-notification-hub/TestRecord.md index 4715151a9..831a0032d 100644 --- a/quickstart/101-notification-hub/TestRecord.md +++ b/quickstart/101-notification-hub/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 00:48 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 00:34 UTC Success: true diff --git a/quickstart/101-resource-group/TestRecord.md b/quickstart/101-resource-group/TestRecord.md index 6e854ebd1..96fadb2d4 100644 --- a/quickstart/101-resource-group/TestRecord.md +++ b/quickstart/101-resource-group/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 00:42 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 00:28 UTC Success: true diff --git a/quickstart/101-sql-database/TestRecord.md b/quickstart/101-sql-database/TestRecord.md index 5ad826f03..518b88ae2 100644 --- a/quickstart/101-sql-database/TestRecord.md +++ b/quickstart/101-sql-database/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 00:43 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 00:33 UTC Success: true diff --git a/quickstart/101-sql-security-alert-policy/TestRecord.md b/quickstart/101-sql-security-alert-policy/TestRecord.md index 049b9034b..3af0879f7 100644 --- a/quickstart/101-sql-security-alert-policy/TestRecord.md +++ b/quickstart/101-sql-security-alert-policy/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 00:38 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 00:28 UTC Success: true diff --git a/quickstart/101-storage-account-with-static-website/TestRecord.md b/quickstart/101-storage-account-with-static-website/TestRecord.md index b8fb0bcc6..cacb4b0ed 100644 --- a/quickstart/101-storage-account-with-static-website/TestRecord.md +++ b/quickstart/101-storage-account-with-static-website/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 00:35 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 00:25 UTC Success: true diff --git a/quickstart/101-storage-static-website/TestRecord.md b/quickstart/101-storage-static-website/TestRecord.md index 8118019b1..61f285227 100644 --- a/quickstart/101-storage-static-website/TestRecord.md +++ b/quickstart/101-storage-static-website/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 00:42 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 19 Nov 23 00:24 UTC Success: true diff --git a/quickstart/101-stream-analytics-job/TestRecord.md b/quickstart/101-stream-analytics-job/TestRecord.md index e4b981673..498bdb6ef 100644 --- a/quickstart/101-stream-analytics-job/TestRecord.md +++ b/quickstart/101-stream-analytics-job/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 00:30 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 00:22 UTC Success: true diff --git a/quickstart/101-synapse/TestRecord.md b/quickstart/101-synapse/TestRecord.md index 7de64be40..26a12cdc0 100644 --- a/quickstart/101-synapse/TestRecord.md +++ b/quickstart/101-synapse/TestRecord.md @@ -1,3 +1,21 @@ +## 26 Nov 23 00:34 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/http v3.4.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 00:28 UTC Success: true diff --git a/quickstart/101-traffic-manager-external-endpoint/TestRecord.md b/quickstart/101-traffic-manager-external-endpoint/TestRecord.md index 00fc99e62..5a7389837 100644 --- a/quickstart/101-traffic-manager-external-endpoint/TestRecord.md +++ b/quickstart/101-traffic-manager-external-endpoint/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 00:26 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 00:19 UTC Success: true diff --git a/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md b/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md index a604d1b1f..a2c77bcc3 100644 --- a/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md +++ b/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 00:29 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 00:22 UTC Success: true diff --git a/quickstart/101-vm-auto-shutdown/TestRecord.md b/quickstart/101-vm-auto-shutdown/TestRecord.md index f257c0539..4b38bb872 100644 --- a/quickstart/101-vm-auto-shutdown/TestRecord.md +++ b/quickstart/101-vm-auto-shutdown/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 00:25 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 00:18 UTC Success: true diff --git a/quickstart/101-vm-cluster-linux/TestRecord.md b/quickstart/101-vm-cluster-linux/TestRecord.md index 8d6fb27ba..6cc4cf2d0 100644 --- a/quickstart/101-vm-cluster-linux/TestRecord.md +++ b/quickstart/101-vm-cluster-linux/TestRecord.md @@ -1,3 +1,21 @@ +## 26 Nov 23 04:09 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 05:59 UTC Success: true diff --git a/quickstart/101-vm-cluster-windows/TestRecord.md b/quickstart/101-vm-cluster-windows/TestRecord.md index 5dfd9a1be..7bb616ebd 100644 --- a/quickstart/101-vm-cluster-windows/TestRecord.md +++ b/quickstart/101-vm-cluster-windows/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 04:04 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 05:59 UTC Success: true diff --git a/quickstart/101-vm-with-infrastructure/TestRecord.md b/quickstart/101-vm-with-infrastructure/TestRecord.md index 7dbb8c188..0210a2308 100644 --- a/quickstart/101-vm-with-infrastructure/TestRecord.md +++ b/quickstart/101-vm-with-infrastructure/TestRecord.md @@ -1,3 +1,21 @@ +## 26 Nov 23 04:04 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 05:53 UTC Success: true diff --git a/quickstart/101-web-app-linux-container/TestRecord.md b/quickstart/101-web-app-linux-container/TestRecord.md index 28665b4e1..bc3ca1ff0 100644 --- a/quickstart/101-web-app-linux-container/TestRecord.md +++ b/quickstart/101-web-app-linux-container/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 04:00 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 05:55 UTC Success: true diff --git a/quickstart/101-web-app-linux-java/TestRecord.md b/quickstart/101-web-app-linux-java/TestRecord.md index 32df47c56..632d2bed4 100644 --- a/quickstart/101-web-app-linux-java/TestRecord.md +++ b/quickstart/101-web-app-linux-java/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 03:59 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 05:55 UTC Success: true diff --git a/quickstart/101-web-app-windows-dotnet/TestRecord.md b/quickstart/101-web-app-windows-dotnet/TestRecord.md index 44772e4f7..47d87dd19 100644 --- a/quickstart/101-web-app-windows-dotnet/TestRecord.md +++ b/quickstart/101-web-app-windows-dotnet/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 03:57 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 05:31 UTC Success: true diff --git a/quickstart/101-windows-vm-with-iis-server/TestRecord.md b/quickstart/101-windows-vm-with-iis-server/TestRecord.md index fa95d4bbf..a89f1ef19 100644 --- a/quickstart/101-windows-vm-with-iis-server/TestRecord.md +++ b/quickstart/101-windows-vm-with-iis-server/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 03:58 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 05:53 UTC Success: true diff --git a/quickstart/201-aks-acr-identity/TestRecord.md b/quickstart/201-aks-acr-identity/TestRecord.md index 215e0e083..1bf30675a 100644 --- a/quickstart/201-aks-acr-identity/TestRecord.md +++ b/quickstart/201-aks-acr-identity/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 03:56 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 21 Nov 23 07:41 UTC Success: true diff --git a/quickstart/201-aks-helm/TestRecord.md b/quickstart/201-aks-helm/TestRecord.md index e7ac7d474..0e739b49e 100644 --- a/quickstart/201-aks-helm/TestRecord.md +++ b/quickstart/201-aks-helm/TestRecord.md @@ -1,3 +1,21 @@ +## 26 Nov 23 03:48 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/helm v2.9.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 05:49 UTC Success: true diff --git a/quickstart/201-aks-log-analytics/TestRecord.md b/quickstart/201-aks-log-analytics/TestRecord.md index ff62ab803..b97d9ef6e 100644 --- a/quickstart/201-aks-log-analytics/TestRecord.md +++ b/quickstart/201-aks-log-analytics/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 03:47 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 19 Nov 23 05:41 UTC Success: true diff --git a/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md b/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md index 442896671..b867bb6ca 100644 --- a/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md +++ b/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md @@ -1,3 +1,21 @@ +## 26 Nov 23 03:38 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/kubernetes v2.23.0 ++ provider registry.terraform.io/hashicorp/random v3.3.2 + +### Error + + + +--- + ## 19 Nov 23 04:26 UTC Success: true diff --git a/quickstart/201-azfw-multi-addresses/TestRecord.md b/quickstart/201-azfw-multi-addresses/TestRecord.md index 65fc913aa..e7502d3a4 100644 --- a/quickstart/201-azfw-multi-addresses/TestRecord.md +++ b/quickstart/201-azfw-multi-addresses/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 03:36 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 05:38 UTC Success: true diff --git a/quickstart/201-azfw-with-avzones/TestRecord.md b/quickstart/201-azfw-with-avzones/TestRecord.md index 0fa9be0e6..78f841512 100644 --- a/quickstart/201-azfw-with-avzones/TestRecord.md +++ b/quickstart/201-azfw-with-avzones/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 03:17 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 05:19 UTC Success: true diff --git a/quickstart/201-azfw-with-ipgroups/TestRecord.md b/quickstart/201-azfw-with-ipgroups/TestRecord.md index e94d4a225..c5a5acf61 100644 --- a/quickstart/201-azfw-with-ipgroups/TestRecord.md +++ b/quickstart/201-azfw-with-ipgroups/TestRecord.md @@ -1,3 +1,21 @@ +## 26 Nov 23 02:57 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 05:01 UTC Success: true diff --git a/quickstart/201-azfw-with-secure-hub/TestRecord.md b/quickstart/201-azfw-with-secure-hub/TestRecord.md index 48025d20e..1fe74568b 100644 --- a/quickstart/201-azfw-with-secure-hub/TestRecord.md +++ b/quickstart/201-azfw-with-secure-hub/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 03:28 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 05:30 UTC Success: true diff --git a/quickstart/201-azure-pipelines-ci-cd/TestRecord.md b/quickstart/201-azure-pipelines-ci-cd/TestRecord.md index 946972162..1532ccc67 100644 --- a/quickstart/201-azure-pipelines-ci-cd/TestRecord.md +++ b/quickstart/201-azure-pipelines-ci-cd/TestRecord.md @@ -1,3 +1,18 @@ +## 26 Nov 23 02:37 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 + +### Error + + + +--- + ## 19 Nov 23 04:40 UTC Success: true diff --git a/quickstart/201-confidential-os-disk/TestRecord.md b/quickstart/201-confidential-os-disk/TestRecord.md index 6391eaf7b..4157152f1 100644 --- a/quickstart/201-confidential-os-disk/TestRecord.md +++ b/quickstart/201-confidential-os-disk/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 02:37 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 04:40 UTC Success: true diff --git a/quickstart/201-confidential-vm/TestRecord.md b/quickstart/201-confidential-vm/TestRecord.md index a0b1e89d7..701451f67 100644 --- a/quickstart/201-confidential-vm/TestRecord.md +++ b/quickstart/201-confidential-vm/TestRecord.md @@ -1,3 +1,21 @@ +## 26 Nov 23 02:40 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 19 Nov 23 04:40 UTC Success: true diff --git a/quickstart/201-confidential-vmss/TestRecord.md b/quickstart/201-confidential-vmss/TestRecord.md index 492a1c700..5c900ea1d 100644 --- a/quickstart/201-confidential-vmss/TestRecord.md +++ b/quickstart/201-confidential-vmss/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 02:34 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 04:38 UTC Success: true diff --git a/quickstart/201-function-app-key-vault-ref/TestRecord.md b/quickstart/201-function-app-key-vault-ref/TestRecord.md index 4636ab7e6..42e8047f6 100644 --- a/quickstart/201-function-app-key-vault-ref/TestRecord.md +++ b/quickstart/201-function-app-key-vault-ref/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 02:27 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 04:33 UTC Success: true diff --git a/quickstart/201-function-app/TestRecord.md b/quickstart/201-function-app/TestRecord.md index 1d0cebe6a..66b3a25fe 100644 --- a/quickstart/201-function-app/TestRecord.md +++ b/quickstart/201-function-app/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 02:29 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 04:35 UTC Success: true diff --git a/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md b/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md index 9b5fb0e53..0943f42ca 100644 --- a/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md +++ b/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 02:23 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 03:38 UTC Success: true diff --git a/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md b/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md index a3ea04abf..a9e8dc90d 100644 --- a/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md +++ b/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 02:33 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 04:34 UTC Success: true diff --git a/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md b/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md index 25192ba7c..b91cbacc5 100644 --- a/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md +++ b/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md @@ -1,3 +1,22 @@ +## 26 Nov 23 02:12 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 ++ provider registry.terraform.io/hashicorp/time v0.9.1 + +### Error + + + +--- + ## 19 Nov 23 04:10 UTC Success: true diff --git a/quickstart/201-machine-learning-moderately-secure/TestRecord.md b/quickstart/201-machine-learning-moderately-secure/TestRecord.md index 010796fea..5b20deb5f 100644 --- a/quickstart/201-machine-learning-moderately-secure/TestRecord.md +++ b/quickstart/201-machine-learning-moderately-secure/TestRecord.md @@ -1,3 +1,21 @@ +## 26 Nov 23 02:03 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 ++ provider registry.terraform.io/hashicorp/random v3.5.1 ++ provider registry.terraform.io/orobix/azureml v0.0.5 + +### Error + + + +--- + ## 19 Nov 23 04:01 UTC Success: false diff --git a/quickstart/201-mysql-fs-db/TestRecord.md b/quickstart/201-mysql-fs-db/TestRecord.md index 7a273d8a3..1d5628eaf 100644 --- a/quickstart/201-mysql-fs-db/TestRecord.md +++ b/quickstart/201-mysql-fs-db/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 02:03 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 04:16 UTC Success: true diff --git a/quickstart/201-postgresql-fs-db/TestRecord.md b/quickstart/201-postgresql-fs-db/TestRecord.md index 1f4134c56..7da5affc6 100644 --- a/quickstart/201-postgresql-fs-db/TestRecord.md +++ b/quickstart/201-postgresql-fs-db/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 01:46 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 04:01 UTC Success: true diff --git a/quickstart/201-synapse-secure/TestRecord.md b/quickstart/201-synapse-secure/TestRecord.md index b918dd198..4299ec326 100644 --- a/quickstart/201-synapse-secure/TestRecord.md +++ b/quickstart/201-synapse-secure/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 01:36 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.32.0 ++ provider registry.terraform.io/hashicorp/http v3.4.0 + +### Error + + + +--- + ## 19 Nov 23 03:52 UTC Success: false diff --git a/quickstart/201-vm-disk-encryption-extension/TestRecord.md b/quickstart/201-vm-disk-encryption-extension/TestRecord.md index c9d5baae7..5c6e2c726 100644 --- a/quickstart/201-vm-disk-encryption-extension/TestRecord.md +++ b/quickstart/201-vm-disk-encryption-extension/TestRecord.md @@ -1,3 +1,22 @@ +## 26 Nov 23 01:36 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/local v2.3.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 19 Nov 23 03:57 UTC Success: true diff --git a/quickstart/201-vmss-disk-encryption-extension/TestRecord.md b/quickstart/201-vmss-disk-encryption-extension/TestRecord.md index 2ba7625d6..ccc5cb3f9 100644 --- a/quickstart/201-vmss-disk-encryption-extension/TestRecord.md +++ b/quickstart/201-vmss-disk-encryption-extension/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 01:28 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 03:52 UTC Success: false diff --git a/quickstart/201-vmss-jumpbox/TestRecord.md b/quickstart/201-vmss-jumpbox/TestRecord.md index 50d5f9b7a..242dcd127 100644 --- a/quickstart/201-vmss-jumpbox/TestRecord.md +++ b/quickstart/201-vmss-jumpbox/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 01:20 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 03:48 UTC Success: true diff --git a/quickstart/201-web-app-docker-acr/TestRecord.md b/quickstart/201-web-app-docker-acr/TestRecord.md index 6b7b93bae..2c98467d3 100644 --- a/quickstart/201-web-app-docker-acr/TestRecord.md +++ b/quickstart/201-web-app-docker-acr/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 01:09 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 03:43 UTC Success: true diff --git a/quickstart/201-web-app-postgres-keyvault/TestRecord.md b/quickstart/201-web-app-postgres-keyvault/TestRecord.md index 264979bd3..93e9619a0 100644 --- a/quickstart/201-web-app-postgres-keyvault/TestRecord.md +++ b/quickstart/201-web-app-postgres-keyvault/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 01:07 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.82.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 03:43 UTC Success: true diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md b/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md index f8c9f7d09..7d7d6ad56 100644 --- a/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md @@ -1,3 +1,35 @@ +## 26 Nov 23 01:03 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... + +Initializing provider plugins... +- Finding latest version of telemaco019/azureml... +- Finding hashicorp/azurerm versions matching "2.78.0"... +- Finding latest version of hashicorp/random... +- Installing hashicorp/random v3.5.1... +- Installed hashicorp/random v3.5.1 (signed by HashiCorp) +- Installing telemaco019/azureml v0.0.5... +- Installing hashicorp/azurerm v2.78.0... +- Installed hashicorp/azurerm v2.78.0 (signed by HashiCorp) + +Error: Failed to install provider + +Error while installing telemaco019/azureml v0.0.5: checksum list has no +SHA-256 hash for +"https://github.com/orobix/terraform-provider-azureml/releases/download/v0.0.5/terraform-provider-azureml_0.0.5_linux_amd64.zip" + + +--- + ## 19 Nov 23 03:39 UTC Success: false diff --git a/quickstart/301-aks-enterprise/TestRecord.md b/quickstart/301-aks-enterprise/TestRecord.md index 8eac6036e..460f7e185 100644 --- a/quickstart/301-aks-enterprise/TestRecord.md +++ b/quickstart/301-aks-enterprise/TestRecord.md @@ -1,3 +1,296 @@ +## 26 Nov 23 01:03 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... +Terraform encountered problems during initialisation, including problems +with the configuration, described below. + +The Terraform configuration must be valid before initialization so that +Terraform can determine which modules and providers need to be installed. + +Warning: Quoted references are deprecated + + on aks.tf line 6, in resource "azurerm_kubernetes_cluster" "default": + 6: depends_on = ["azurerm_role_assignment.default"] + +In this context, references are expected literally rather than in quotes. +Terraform 0.11 and earlier required quotes, but quoted references are now +deprecated and will be removed in a future version of Terraform. Remove the +quotes surrounding this reference to silence this warning. + +(and 5 more similar warnings elsewhere) + + +Error: Invalid quoted type constraints + + on variables.tf line 3, in variable "name": + 3: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 3, in variable "name": + 3: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 9, in variable "environment": + 9: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 9, in variable "environment": + 9: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 17, in variable "location": + 17: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 17, in variable "location": + 17: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 25, in variable "node_count": + 25: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 25, in variable "node_count": + 25: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 31, in variable "node_type": + 31: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 31, in variable "node_type": + 31: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 37, in variable "node_os": + 37: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 37, in variable "node_os": + 37: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 43, in variable "dns_prefix": + 43: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 43, in variable "dns_prefix": + 43: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 51, in variable "vnet_address_space": + 51: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 51, in variable "vnet_address_space": + 51: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 57, in variable "vnet_aks_subnet_space": + 57: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 57, in variable "vnet_aks_subnet_space": + 57: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 63, in variable "vnet_ingress_subnet_space": + 63: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 63, in variable "vnet_ingress_subnet_space": + 63: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 69, in variable "vnet_gateway_subnet_space": + 69: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 69, in variable "vnet_gateway_subnet_space": + 69: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 75, in variable "ingress_load_balancer_ip": + 75: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 75, in variable "ingress_load_balancer_ip": + 75: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 82, in variable "gateway_instance_count": + 82: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 82, in variable "gateway_instance_count": + 82: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +--- + ## 19 Nov 23 03:39 UTC Success: false diff --git a/quickstart/301-aks-private-cluster/TestRecord.md b/quickstart/301-aks-private-cluster/TestRecord.md index 311685bdd..7cf448d64 100644 --- a/quickstart/301-aks-private-cluster/TestRecord.md +++ b/quickstart/301-aks-private-cluster/TestRecord.md @@ -1,3 +1,20 @@ +## 26 Nov 23 01:03 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/null v3.2.2 + +### Error + + + +--- + ## 19 Nov 23 03:39 UTC Success: false diff --git a/quickstart/301-hub-spoke/TestRecord.md b/quickstart/301-hub-spoke/TestRecord.md index eb6acdba9..dde41a542 100644 --- a/quickstart/301-hub-spoke/TestRecord.md +++ b/quickstart/301-hub-spoke/TestRecord.md @@ -1,3 +1,19 @@ +## 26 Nov 23 01:03 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 + +### Error + + + +--- + ## 19 Nov 23 03:39 UTC Success: false diff --git a/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md b/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md index a8345bc91..7f10482ec 100644 --- a/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md +++ b/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md @@ -1,3 +1,35 @@ +## 26 Nov 23 01:03 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... + +Initializing provider plugins... +- Finding latest version of telemaco019/azureml... +- Finding hashicorp/azurerm versions matching "2.78.0"... +- Finding latest version of hashicorp/random... +- Installing telemaco019/azureml v0.0.5... +- Installing hashicorp/azurerm v2.78.0... +- Installed hashicorp/azurerm v2.78.0 (signed by HashiCorp) +- Installing hashicorp/random v3.5.1... +- Installed hashicorp/random v3.5.1 (signed by HashiCorp) + +Error: Failed to install provider + +Error while installing telemaco019/azureml v0.0.5: checksum list has no +SHA-256 hash for +"https://github.com/orobix/terraform-provider-azureml/releases/download/v0.0.5/terraform-provider-azureml_0.0.5_linux_amd64.zip" + + +--- + ## 19 Nov 23 03:39 UTC Success: false diff --git a/quickstart/301-service-fabric-apim/TestRecord.md b/quickstart/301-service-fabric-apim/TestRecord.md index 4a10cbe3d..06155ba3f 100644 --- a/quickstart/301-service-fabric-apim/TestRecord.md +++ b/quickstart/301-service-fabric-apim/TestRecord.md @@ -1,3 +1,21 @@ +## 26 Nov 23 01:03 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.46.0 ++ provider registry.terraform.io/hashicorp/azurerm v1.36.1 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 03:38 UTC Success: false diff --git a/quickstart/301-service-fabric/TestRecord.md b/quickstart/301-service-fabric/TestRecord.md index 174cbacc4..44ec6e5da 100644 --- a/quickstart/301-service-fabric/TestRecord.md +++ b/quickstart/301-service-fabric/TestRecord.md @@ -1,3 +1,21 @@ +## 26 Nov 23 01:03 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.46.0 ++ provider registry.terraform.io/hashicorp/azurerm v1.36.1 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 19 Nov 23 03:38 UTC Success: false diff --git a/quickstart/template/TestRecord.md b/quickstart/template/TestRecord.md index 4f263a45e..365c39552 100644 --- a/quickstart/template/TestRecord.md +++ b/quickstart/template/TestRecord.md @@ -1,3 +1,19 @@ +## 26 Nov 23 01:03 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.56.0 + +### Error + + + +--- + ## 19 Nov 23 03:38 UTC Success: false From d55380d2d4e53046bf5ec084e3075a479ed33e85 Mon Sep 17 00:00:00 2001 From: Neil Ye Date: Tue, 28 Nov 2023 09:05:17 +0800 Subject: [PATCH 27/64] 301-aks-windows-nodepool - remove unused case (#288) --- .../301-aks-windows-nodepool/TestRecord.md | 600 ------------------ quickstart/301-aks-windows-nodepool/readme.md | 31 - 2 files changed, 631 deletions(-) delete mode 100644 quickstart/301-aks-windows-nodepool/TestRecord.md delete mode 100644 quickstart/301-aks-windows-nodepool/readme.md diff --git a/quickstart/301-aks-windows-nodepool/TestRecord.md b/quickstart/301-aks-windows-nodepool/TestRecord.md deleted file mode 100644 index 5c4ae96af..000000000 --- a/quickstart/301-aks-windows-nodepool/TestRecord.md +++ /dev/null @@ -1,600 +0,0 @@ -## 12 Nov 23 06:51 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 05 Nov 23 00:23 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 29 Oct 23 00:28 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 22 Oct 23 04:47 UTC - -Success: false - -### Versions - -Terraform v1.5.7 -on linux_amd64 - -### Error - - - ---- - -## 15 Oct 23 05:01 UTC - -Success: false - -### Versions - -Terraform v1.5.7 -on linux_amd64 - -### Error - - - ---- - -## 08 Oct 23 04:51 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 01 Oct 23 00:24 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 24 Sep 23 04:37 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 20 Sep 23 10:55 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 17 Sep 23 04:25 UTC - -Success: false - -### Versions - -Terraform v1.5.5 -on linux_amd64 - -### Error - - - ---- - -## 10 Sep 23 04:59 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 03 Sep 23 00:30 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 27 Aug 23 05:16 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 20 Aug 23 00:17 UTC - -Success: false - -### Versions - -Terraform v1.5.3 -on linux_amd64 - -### Error - - - ---- - -## 13 Aug 23 00:11 UTC - -Success: false - -### Versions - -Terraform v1.5.2 -on linux_amd64 - -### Error - - - ---- - -## 06 Aug 23 00:13 UTC - -Success: false - -### Versions - -Terraform v1.5.1 -on linux_amd64 - -### Error - - - ---- - -## 30 Jul 23 00:16 UTC - -Success: false - -### Versions - -Terraform v1.5.1 -on linux_amd64 - -### Error - - - ---- - -## 16 Jul 23 04:45 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 09 Jul 23 00:18 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 02 Jul 23 00:12 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 25 Jun 23 00:12 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 18 Jun 23 00:16 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 11 Jun 23 00:18 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 04 Jun 23 00:14 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 28 May 23 05:26 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 21 May 23 04:32 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 14 May 23 04:21 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 07 May 23 00:11 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 30 Apr 23 00:16 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 23 Apr 23 04:22 UTC - -Success: false - -### Versions - -Terraform v1.4.4 -on linux_amd64 - -### Error - - - ---- - -## 16 Apr 23 00:18 UTC - -Success: false - -### Versions - -Terraform v1.4.3 -on linux_amd64 - -### Error - - - ---- - -## 09 Apr 23 00:17 UTC - -Success: false - -### Versions - -Terraform v1.4.2 -on linux_amd64 - -### Error - - - ---- - -## 02 Apr 23 04:27 UTC - -Success: false - -### Versions - -Terraform v1.4.1 -on linux_amd64 - -### Error - - - ---- - -## 26 Mar 23 05:00 UTC - -Success: false - -### Versions - -Terraform v1.4.1 -on linux_amd64 - -### Error - - - ---- - -## 19 Mar 23 04:23 UTC - -Success: false - -### Versions - -Terraform v1.4.0 -on linux_amd64 - -### Error - - - ---- - -## 12 Mar 23 05:15 UTC - -Success: false - -### Versions - -Terraform v1.3.8 -on linux_amd64 - -### Error - - - ---- - -## 08 Mar 23 18:19 UTC - -Success: false - -### Versions - -Terraform v1.3.8 -on linux_amd64 - -### Error - - - ---- - -## 19 Feb 23 00:09 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - -## 12 Feb 23 00:15 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - -## 05 Feb 23 00:26 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - diff --git a/quickstart/301-aks-windows-nodepool/readme.md b/quickstart/301-aks-windows-nodepool/readme.md deleted file mode 100644 index 64cda286f..000000000 --- a/quickstart/301-aks-windows-nodepool/readme.md +++ /dev/null @@ -1,31 +0,0 @@ -# Azure Kubernetes Service with Windows - -Sometimes we need multiple node types with AKS. This template deploys an Azure Kubernetes Service cluster with a basic VM pool as well as a node pool of VMs that have GPUs attached. - -## Variables - -| Name | Description | -|-|-| -| name | Name of the deployment | -| environment | The depolyment environment name (used for postfixing resource names) | -| location | The Azure Region to deploy these resources in | -| vm_sku | The SKU of the VMs to deploy for AKS | -| vm_gpu_sku | The SKU of VMs to deploy for the AKS GPU Nodepool" -| prefix | A DNS Prefix to use in the AKS Cluster | - - -## Usage - -```bash -terraform plan \ - -var 'name=demo-dotnet' \ - -var 'environment=staging' \ - -var 'location=West US 2' - -var 'prefix=tfquickstard' \ - -var 'vm_sku=ds1v2' \ - -out demo.tfplan - -terraform apply demo.tfplan -``` - -\* Example shown with [Bash](https://www.gnu.org/software/bash/). For [Powershell](https://docs.microsoft.com/en-us/powershell/) replace backslashes with backticks. \ No newline at end of file From ea0802157add6084d6b8ab9e124ec942316258c0 Mon Sep 17 00:00:00 2001 From: Neil Ye Date: Tue, 28 Nov 2023 09:21:14 +0800 Subject: [PATCH 28/64] 301-hub-spoke-network-3vm - remove unused case (#287) --- .../301-hub-spoke-network-3vm/TestRecord.md | 600 ------------------ .../301-hub-spoke-network-3vm/readme.md | 33 - 2 files changed, 633 deletions(-) delete mode 100644 quickstart/301-hub-spoke-network-3vm/TestRecord.md delete mode 100644 quickstart/301-hub-spoke-network-3vm/readme.md diff --git a/quickstart/301-hub-spoke-network-3vm/TestRecord.md b/quickstart/301-hub-spoke-network-3vm/TestRecord.md deleted file mode 100644 index 7f94c4b0a..000000000 --- a/quickstart/301-hub-spoke-network-3vm/TestRecord.md +++ /dev/null @@ -1,600 +0,0 @@ -## 12 Nov 23 06:50 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 05 Nov 23 00:23 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 29 Oct 23 00:28 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 22 Oct 23 04:46 UTC - -Success: false - -### Versions - -Terraform v1.5.7 -on linux_amd64 - -### Error - - - ---- - -## 15 Oct 23 05:00 UTC - -Success: false - -### Versions - -Terraform v1.5.7 -on linux_amd64 - -### Error - - - ---- - -## 08 Oct 23 04:51 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 01 Oct 23 00:24 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 24 Sep 23 04:37 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 20 Sep 23 10:54 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 17 Sep 23 04:24 UTC - -Success: false - -### Versions - -Terraform v1.5.5 -on linux_amd64 - -### Error - - - ---- - -## 10 Sep 23 04:59 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 03 Sep 23 00:30 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 27 Aug 23 05:16 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 20 Aug 23 00:17 UTC - -Success: false - -### Versions - -Terraform v1.5.3 -on linux_amd64 - -### Error - - - ---- - -## 13 Aug 23 00:11 UTC - -Success: false - -### Versions - -Terraform v1.5.2 -on linux_amd64 - -### Error - - - ---- - -## 06 Aug 23 00:13 UTC - -Success: false - -### Versions - -Terraform v1.5.1 -on linux_amd64 - -### Error - - - ---- - -## 30 Jul 23 00:16 UTC - -Success: false - -### Versions - -Terraform v1.5.1 -on linux_amd64 - -### Error - - - ---- - -## 16 Jul 23 04:45 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 09 Jul 23 00:18 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 02 Jul 23 00:12 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 25 Jun 23 00:11 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 18 Jun 23 00:16 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 11 Jun 23 00:18 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 04 Jun 23 00:14 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 28 May 23 05:26 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 21 May 23 04:32 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 14 May 23 04:21 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 07 May 23 00:11 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 30 Apr 23 00:15 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 23 Apr 23 04:22 UTC - -Success: false - -### Versions - -Terraform v1.4.4 -on linux_amd64 - -### Error - - - ---- - -## 16 Apr 23 00:18 UTC - -Success: false - -### Versions - -Terraform v1.4.3 -on linux_amd64 - -### Error - - - ---- - -## 09 Apr 23 00:17 UTC - -Success: false - -### Versions - -Terraform v1.4.2 -on linux_amd64 - -### Error - - - ---- - -## 02 Apr 23 04:27 UTC - -Success: false - -### Versions - -Terraform v1.4.1 -on linux_amd64 - -### Error - - - ---- - -## 26 Mar 23 05:00 UTC - -Success: false - -### Versions - -Terraform v1.4.1 -on linux_amd64 - -### Error - - - ---- - -## 19 Mar 23 04:23 UTC - -Success: false - -### Versions - -Terraform v1.4.0 -on linux_amd64 - -### Error - - - ---- - -## 12 Mar 23 05:15 UTC - -Success: false - -### Versions - -Terraform v1.3.8 -on linux_amd64 - -### Error - - - ---- - -## 08 Mar 23 18:19 UTC - -Success: false - -### Versions - -Terraform v1.3.8 -on linux_amd64 - -### Error - - - ---- - -## 19 Feb 23 00:09 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - -## 12 Feb 23 00:15 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - -## 05 Feb 23 00:26 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - diff --git a/quickstart/301-hub-spoke-network-3vm/readme.md b/quickstart/301-hub-spoke-network-3vm/readme.md deleted file mode 100644 index 1a7f32e61..000000000 --- a/quickstart/301-hub-spoke-network-3vm/readme.md +++ /dev/null @@ -1,33 +0,0 @@ -# Hub and Spoke networking with 3 VMs - - -This template deploys three Virtual Networks peered in a Hub and Spoke topology (one hub and two spokes). A Linux Virtual Machine is deploy to each network with SSH enabled so connectivity between each network can be verified after deployment. - -## Variables - -| Name | Description | -|-|-| -| name | Name of the deployment | -| environment | The depolyment environment name (used for postfixing resource names) | -| location | The Azure Region to deploy these resources in | -| vm_sku | The App Service Plan SKU to deploy| -| vnet_hub_name | The address range of the Virtual Network to create | -| vnet_spoke1_name | The address spcae of VNet to reserve for non App Service deployments | -| vnet_spoke2_name | The address space in the VNet to reserve for App Service deployments| - - -## Usage - -```bash -terraform plan \ - -var 'name=demo-dotnet' \ - -var 'environment=staging' \ - -var 'location=West US 2' - -var 'prefix=tfquickstard' \ - -var 'vm_sku=ds1v2' \ - -out demo.tfplan - -terraform apply demo.tfplan -``` - -\* Example shown with [Bash](https://www.gnu.org/software/bash/). For [Powershell](https://docs.microsoft.com/en-us/powershell/) replace backslashes with backticks. \ No newline at end of file From 056c7928e187f4d3e03025beca8792810df7bb1a Mon Sep 17 00:00:00 2001 From: Neil Ye Date: Tue, 28 Nov 2023 09:22:11 +0800 Subject: [PATCH 29/64] 201-aks-advanced-networking - remove unused case (#286) --- .../201-aks-advanced-networking/TestRecord.md | 600 ------------------ .../201-aks-advanced-networking/readme.md | 0 2 files changed, 600 deletions(-) delete mode 100644 quickstart/201-aks-advanced-networking/TestRecord.md delete mode 100644 quickstart/201-aks-advanced-networking/readme.md diff --git a/quickstart/201-aks-advanced-networking/TestRecord.md b/quickstart/201-aks-advanced-networking/TestRecord.md deleted file mode 100644 index 24ce334c0..000000000 --- a/quickstart/201-aks-advanced-networking/TestRecord.md +++ /dev/null @@ -1,600 +0,0 @@ -## 12 Nov 23 02:13 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 05 Nov 23 02:45 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 29 Oct 23 02:23 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 22 Oct 23 07:01 UTC - -Success: false - -### Versions - -Terraform v1.5.7 -on linux_amd64 - -### Error - - - ---- - -## 15 Oct 23 06:23 UTC - -Success: false - -### Versions - -Terraform v1.5.7 -on linux_amd64 - -### Error - - - ---- - -## 08 Oct 23 06:11 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 01 Oct 23 01:41 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 24 Sep 23 05:53 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 20 Sep 23 12:05 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 17 Sep 23 05:43 UTC - -Success: false - -### Versions - -Terraform v1.5.5 -on linux_amd64 - -### Error - - - ---- - -## 10 Sep 23 06:19 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 03 Sep 23 01:25 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 27 Aug 23 06:31 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 20 Aug 23 01:15 UTC - -Success: false - -### Versions - -Terraform v1.5.3 -on linux_amd64 - -### Error - - - ---- - -## 13 Aug 23 01:07 UTC - -Success: false - -### Versions - -Terraform v1.5.2 -on linux_amd64 - -### Error - - - ---- - -## 06 Aug 23 01:19 UTC - -Success: false - -### Versions - -Terraform v1.5.1 -on linux_amd64 - -### Error - - - ---- - -## 30 Jul 23 01:08 UTC - -Success: false - -### Versions - -Terraform v1.5.1 -on linux_amd64 - -### Error - - - ---- - -## 16 Jul 23 05:42 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 09 Jul 23 01:14 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 02 Jul 23 01:16 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 25 Jun 23 02:24 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 18 Jun 23 01:16 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 11 Jun 23 01:12 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 04 Jun 23 01:15 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 28 May 23 01:03 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 21 May 23 05:42 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 14 May 23 05:16 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 07 May 23 01:15 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 30 Apr 23 01:14 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 23 Apr 23 05:24 UTC - -Success: false - -### Versions - -Terraform v1.4.4 -on linux_amd64 - -### Error - - - ---- - -## 16 Apr 23 01:20 UTC - -Success: false - -### Versions - -Terraform v1.4.3 -on linux_amd64 - -### Error - - - ---- - -## 09 Apr 23 00:16 UTC - -Success: false - -### Versions - -Terraform v1.4.2 -on linux_amd64 - -### Error - - - ---- - -## 02 Apr 23 00:08 UTC - -Success: false - -### Versions - -Terraform v1.4.1 -on linux_amd64 - -### Error - - - ---- - -## 26 Mar 23 00:37 UTC - -Success: false - -### Versions - -Terraform v1.4.1 -on linux_amd64 - -### Error - - - ---- - -## 19 Mar 23 00:11 UTC - -Success: false - -### Versions - -Terraform v1.4.0 -on linux_amd64 - -### Error - - - ---- - -## 12 Mar 23 00:18 UTC - -Success: false - -### Versions - -Terraform v1.3.8 -on linux_amd64 - -### Error - - - ---- - -## 08 Mar 23 14:55 UTC - -Success: false - -### Versions - -Terraform v1.3.8 -on linux_amd64 - -### Error - - - ---- - -## 19 Feb 23 00:53 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - -## 12 Feb 23 00:39 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - -## 05 Feb 23 00:14 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - diff --git a/quickstart/201-aks-advanced-networking/readme.md b/quickstart/201-aks-advanced-networking/readme.md deleted file mode 100644 index e69de29bb..000000000 From d76f364b814c764b152ded12e260ac8d49959120 Mon Sep 17 00:00:00 2001 From: Neil Ye Date: Tue, 28 Nov 2023 09:23:29 +0800 Subject: [PATCH 30/64] 201-aks-gpu-nodepool - remove unused case (#285) --- quickstart/201-aks-gpu-nodepool/TestRecord.md | 600 ------------------ quickstart/201-aks-gpu-nodepool/readme.md | 31 - 2 files changed, 631 deletions(-) delete mode 100644 quickstart/201-aks-gpu-nodepool/TestRecord.md delete mode 100644 quickstart/201-aks-gpu-nodepool/readme.md diff --git a/quickstart/201-aks-gpu-nodepool/TestRecord.md b/quickstart/201-aks-gpu-nodepool/TestRecord.md deleted file mode 100644 index b3f17c84f..000000000 --- a/quickstart/201-aks-gpu-nodepool/TestRecord.md +++ /dev/null @@ -1,600 +0,0 @@ -## 12 Nov 23 02:12 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 05 Nov 23 02:45 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 29 Oct 23 02:23 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 22 Oct 23 06:05 UTC - -Success: false - -### Versions - -Terraform v1.5.7 -on linux_amd64 - -### Error - - - ---- - -## 15 Oct 23 06:34 UTC - -Success: false - -### Versions - -Terraform v1.5.7 -on linux_amd64 - -### Error - - - ---- - -## 08 Oct 23 06:11 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 01 Oct 23 01:41 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 24 Sep 23 05:53 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 20 Sep 23 12:24 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 17 Sep 23 05:55 UTC - -Success: false - -### Versions - -Terraform v1.5.5 -on linux_amd64 - -### Error - - - ---- - -## 10 Sep 23 06:19 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 03 Sep 23 01:25 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 27 Aug 23 06:08 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 20 Aug 23 01:15 UTC - -Success: false - -### Versions - -Terraform v1.5.3 -on linux_amd64 - -### Error - - - ---- - -## 13 Aug 23 01:07 UTC - -Success: false - -### Versions - -Terraform v1.5.2 -on linux_amd64 - -### Error - - - ---- - -## 06 Aug 23 01:19 UTC - -Success: false - -### Versions - -Terraform v1.5.1 -on linux_amd64 - -### Error - - - ---- - -## 30 Jul 23 01:08 UTC - -Success: false - -### Versions - -Terraform v1.5.1 -on linux_amd64 - -### Error - - - ---- - -## 16 Jul 23 05:24 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 09 Jul 23 01:14 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 02 Jul 23 01:16 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 25 Jun 23 02:21 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 18 Jun 23 01:16 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 11 Jun 23 01:12 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 04 Jun 23 01:15 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 28 May 23 01:03 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 21 May 23 05:42 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 14 May 23 05:16 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 07 May 23 01:15 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 30 Apr 23 01:14 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 23 Apr 23 05:24 UTC - -Success: false - -### Versions - -Terraform v1.4.4 -on linux_amd64 - -### Error - - - ---- - -## 16 Apr 23 01:20 UTC - -Success: false - -### Versions - -Terraform v1.4.3 -on linux_amd64 - -### Error - - - ---- - -## 09 Apr 23 01:12 UTC - -Success: false - -### Versions - -Terraform v1.4.2 -on linux_amd64 - -### Error - - - ---- - -## 02 Apr 23 05:20 UTC - -Success: false - -### Versions - -Terraform v1.4.1 -on linux_amd64 - -### Error - - - ---- - -## 26 Mar 23 00:37 UTC - -Success: false - -### Versions - -Terraform v1.4.1 -on linux_amd64 - -### Error - - - ---- - -## 19 Mar 23 00:11 UTC - -Success: false - -### Versions - -Terraform v1.4.0 -on linux_amd64 - -### Error - - - ---- - -## 12 Mar 23 00:18 UTC - -Success: false - -### Versions - -Terraform v1.3.8 -on linux_amd64 - -### Error - - - ---- - -## 08 Mar 23 14:55 UTC - -Success: false - -### Versions - -Terraform v1.3.8 -on linux_amd64 - -### Error - - - ---- - -## 19 Feb 23 00:53 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - -## 12 Feb 23 00:39 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - -## 05 Feb 23 00:14 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - diff --git a/quickstart/201-aks-gpu-nodepool/readme.md b/quickstart/201-aks-gpu-nodepool/readme.md deleted file mode 100644 index 596bd0bc5..000000000 --- a/quickstart/201-aks-gpu-nodepool/readme.md +++ /dev/null @@ -1,31 +0,0 @@ -# AKS with a GPU Nodepool - -Sometimes we need multiple node types with AKS. This template deploys an Azure Kubernetes Service cluster with a basic VM pool as well as a node pool of VMs that have GPUs attached. - -## Variables - -| Name | Description | -|-|-| -| name | Name of the deployment | -| environment | The depolyment environment name (used for postfixing resource names) | -| location | The Azure Region to deploy these resources in | -| vm_sku | The SKU of the VMs to deploy for AKS | -| vm_gpu_sku | The SKU of VMs to deploy for the AKS GPU Nodepool" -| prefix | A DNS Prefix to use in the AKS Cluster | - - -## Usage - -```bash -terraform plan \ - -var 'name=demo-dotnet' \ - -var 'environment=staging' \ - -var 'location=West US 2' - -var 'prefix=tfquickstard' \ - -var 'vm_sku=ds1v2' \ - -out demo.tfplan - -terraform apply demo.tfplan -``` - -\* Example shown with [Bash](https://www.gnu.org/software/bash/). For [Powershell](https://docs.microsoft.com/en-us/powershell/) replace backslashes with backticks. \ No newline at end of file From abe19919f1016b1680ed1f83e251f782d7b96824 Mon Sep 17 00:00:00 2001 From: Neil Ye Date: Tue, 28 Nov 2023 09:24:13 +0800 Subject: [PATCH 31/64] 201-web-app-windows-vnet - remove unused case (#283) --- .../201-web-app-windows-vnet/TestRecord.md | 600 ------------------ quickstart/201-web-app-windows-vnet/readme.md | 36 -- 2 files changed, 636 deletions(-) delete mode 100644 quickstart/201-web-app-windows-vnet/TestRecord.md delete mode 100644 quickstart/201-web-app-windows-vnet/readme.md diff --git a/quickstart/201-web-app-windows-vnet/TestRecord.md b/quickstart/201-web-app-windows-vnet/TestRecord.md deleted file mode 100644 index f026dee13..000000000 --- a/quickstart/201-web-app-windows-vnet/TestRecord.md +++ /dev/null @@ -1,600 +0,0 @@ -## 12 Nov 23 00:21 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 05 Nov 23 00:23 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 29 Oct 23 00:28 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 22 Oct 23 04:47 UTC - -Success: false - -### Versions - -Terraform v1.5.7 -on linux_amd64 - -### Error - - - ---- - -## 15 Oct 23 05:01 UTC - -Success: false - -### Versions - -Terraform v1.5.7 -on linux_amd64 - -### Error - - - ---- - -## 08 Oct 23 04:51 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 01 Oct 23 00:24 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 24 Sep 23 04:38 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 20 Sep 23 10:55 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 17 Sep 23 04:25 UTC - -Success: false - -### Versions - -Terraform v1.5.5 -on linux_amd64 - -### Error - - - ---- - -## 10 Sep 23 04:59 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 03 Sep 23 00:30 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 27 Aug 23 05:16 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 20 Aug 23 00:17 UTC - -Success: false - -### Versions - -Terraform v1.5.3 -on linux_amd64 - -### Error - - - ---- - -## 13 Aug 23 00:11 UTC - -Success: false - -### Versions - -Terraform v1.5.2 -on linux_amd64 - -### Error - - - ---- - -## 06 Aug 23 00:14 UTC - -Success: false - -### Versions - -Terraform v1.5.1 -on linux_amd64 - -### Error - - - ---- - -## 30 Jul 23 00:16 UTC - -Success: false - -### Versions - -Terraform v1.5.1 -on linux_amd64 - -### Error - - - ---- - -## 16 Jul 23 04:46 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 09 Jul 23 00:18 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 02 Jul 23 00:12 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 25 Jun 23 00:12 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 18 Jun 23 00:17 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 11 Jun 23 00:18 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 04 Jun 23 00:14 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 28 May 23 05:26 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 21 May 23 04:32 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 14 May 23 04:21 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 07 May 23 00:12 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 30 Apr 23 00:16 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 23 Apr 23 04:23 UTC - -Success: false - -### Versions - -Terraform v1.4.4 -on linux_amd64 - -### Error - - - ---- - -## 16 Apr 23 00:18 UTC - -Success: false - -### Versions - -Terraform v1.4.3 -on linux_amd64 - -### Error - - - ---- - -## 09 Apr 23 00:17 UTC - -Success: false - -### Versions - -Terraform v1.4.2 -on linux_amd64 - -### Error - - - ---- - -## 02 Apr 23 04:27 UTC - -Success: false - -### Versions - -Terraform v1.4.1 -on linux_amd64 - -### Error - - - ---- - -## 26 Mar 23 05:01 UTC - -Success: false - -### Versions - -Terraform v1.4.1 -on linux_amd64 - -### Error - - - ---- - -## 19 Mar 23 04:24 UTC - -Success: false - -### Versions - -Terraform v1.4.0 -on linux_amd64 - -### Error - - - ---- - -## 12 Mar 23 05:16 UTC - -Success: false - -### Versions - -Terraform v1.3.8 -on linux_amd64 - -### Error - - - ---- - -## 08 Mar 23 18:19 UTC - -Success: false - -### Versions - -Terraform v1.3.8 -on linux_amd64 - -### Error - - - ---- - -## 19 Feb 23 00:09 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - -## 12 Feb 23 00:15 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - -## 05 Feb 23 00:26 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - diff --git a/quickstart/201-web-app-windows-vnet/readme.md b/quickstart/201-web-app-windows-vnet/readme.md deleted file mode 100644 index d9014e224..000000000 --- a/quickstart/201-web-app-windows-vnet/readme.md +++ /dev/null @@ -1,36 +0,0 @@ -# Windows Web App for a .NET Application in a VNET - - -This template deploys an [Azure App Service](https://www.terraform.io/docs/providers/azurerm/r/app_service.html) running Windows configured for a .NET Framework 4.6.2 application. This app service is attached to a private Virtual Network. - -## Variables - -| Name | Description | -|-|-| -| name | Name of the deployment | -| environment | The depolyment environment name (used for postfixing resource names) | -| prefix | A prefix for globally-unique dns-based resources | -| location | The Azure Region to deploy these resources in | -| plan_tier | The App Service Plan tier to deploy | -| plan_sku | The App Service Plan SKU to deploy| -| vnet_address_range | The address range of the Virtual Network to create | -| subnet_address_space | The address spcae of VNet to reserve for non App Service deployments | -| subnet_appsvc_space | The address space in the VNet to reserve for App Service deployments| - - -## Usage - -```bash -terraform plan \ - -var 'name=demo-dotnet' \ - -var 'environment=staging' \ - -var 'location=West US 2' - -var 'prefix=tfquickstard' \ - -var 'plan_tier=standard' \ - -var 'plan_sku=s1' \ - -out demo.tfplan - -terraform apply demo.tfplan -``` - -\* Example shown with [Bash](https://www.gnu.org/software/bash/). For [Powershell](https://docs.microsoft.com/en-us/powershell/) replace backslashes with backticks. \ No newline at end of file From a9967b1afa1a561ee3d04c6a87c439c77b4d76e1 Mon Sep 17 00:00:00 2001 From: Neil Ye Date: Tue, 28 Nov 2023 09:25:17 +0800 Subject: [PATCH 32/64] 201-storage-static-website-cdn-ssl - remove unused case (#278) --- .../TestRecord.md | 600 ------------------ .../readme.md | 36 -- 2 files changed, 636 deletions(-) delete mode 100644 quickstart/201-storage-static-website-cdn-ssl/TestRecord.md delete mode 100644 quickstart/201-storage-static-website-cdn-ssl/readme.md diff --git a/quickstart/201-storage-static-website-cdn-ssl/TestRecord.md b/quickstart/201-storage-static-website-cdn-ssl/TestRecord.md deleted file mode 100644 index 15eb4b522..000000000 --- a/quickstart/201-storage-static-website-cdn-ssl/TestRecord.md +++ /dev/null @@ -1,600 +0,0 @@ -## 12 Nov 23 00:30 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 05 Nov 23 00:33 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 29 Oct 23 00:37 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 22 Oct 23 05:02 UTC - -Success: false - -### Versions - -Terraform v1.5.7 -on linux_amd64 - -### Error - - - ---- - -## 15 Oct 23 05:28 UTC - -Success: false - -### Versions - -Terraform v1.5.7 -on linux_amd64 - -### Error - - - ---- - -## 08 Oct 23 05:01 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 01 Oct 23 00:35 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 24 Sep 23 04:48 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 20 Sep 23 11:12 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 17 Sep 23 04:45 UTC - -Success: false - -### Versions - -Terraform v1.5.5 -on linux_amd64 - -### Error - - - ---- - -## 10 Sep 23 05:11 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 03 Sep 23 00:38 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 27 Aug 23 05:16 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 20 Aug 23 00:27 UTC - -Success: false - -### Versions - -Terraform v1.5.3 -on linux_amd64 - -### Error - - - ---- - -## 13 Aug 23 00:18 UTC - -Success: false - -### Versions - -Terraform v1.5.2 -on linux_amd64 - -### Error - - - ---- - -## 06 Aug 23 00:23 UTC - -Success: false - -### Versions - -Terraform v1.5.1 -on linux_amd64 - -### Error - - - ---- - -## 30 Jul 23 00:24 UTC - -Success: false - -### Versions - -Terraform v1.5.1 -on linux_amd64 - -### Error - - - ---- - -## 16 Jul 23 04:55 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 09 Jul 23 00:26 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 02 Jul 23 00:20 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 25 Jun 23 00:19 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 18 Jun 23 00:26 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 11 Jun 23 00:25 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 04 Jun 23 00:23 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 28 May 23 00:14 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 21 May 23 04:32 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 14 May 23 04:20 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 07 May 23 00:21 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 30 Apr 23 00:26 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 23 Apr 23 04:22 UTC - -Success: false - -### Versions - -Terraform v1.4.4 -on linux_amd64 - -### Error - - - ---- - -## 16 Apr 23 00:32 UTC - -Success: false - -### Versions - -Terraform v1.4.3 -on linux_amd64 - -### Error - - - ---- - -## 09 Apr 23 00:30 UTC - -Success: false - -### Versions - -Terraform v1.4.2 -on linux_amd64 - -### Error - - - ---- - -## 02 Apr 23 04:38 UTC - -Success: false - -### Versions - -Terraform v1.4.1 -on linux_amd64 - -### Error - - - ---- - -## 26 Mar 23 05:10 UTC - -Success: false - -### Versions - -Terraform v1.4.1 -on linux_amd64 - -### Error - - - ---- - -## 19 Mar 23 04:44 UTC - -Success: false - -### Versions - -Terraform v1.4.0 -on linux_amd64 - -### Error - - - ---- - -## 12 Mar 23 05:27 UTC - -Success: false - -### Versions - -Terraform v1.3.8 -on linux_amd64 - -### Error - - - ---- - -## 08 Mar 23 18:34 UTC - -Success: false - -### Versions - -Terraform v1.3.8 -on linux_amd64 - -### Error - - - ---- - -## 19 Feb 23 00:22 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - -## 12 Feb 23 00:16 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - -## 05 Feb 23 00:27 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - diff --git a/quickstart/201-storage-static-website-cdn-ssl/readme.md b/quickstart/201-storage-static-website-cdn-ssl/readme.md deleted file mode 100644 index e43355b22..000000000 --- a/quickstart/201-storage-static-website-cdn-ssl/readme.md +++ /dev/null @@ -1,36 +0,0 @@ -# CDN + static website hosted on Azure Storage - - -This template deploys a static website hosted on an [Azure Storage Account](https://www.terraform.io/docs/providers/azurerm/r/storage_account.html) fronted by a CDN configured to support SSL. - -## Resources - -| Terraform Resource Type | Description | -| - | - | -| `azurerm_resource_group` | The resource group all resources are deployed into | -| `azurerm_storage_account` | The storage account used to host the website | - -## Variables - -| Name | Description | -|-|-| -| `name` | Name of the deployment | -| `environment` | The depolyment environment name (used for postfixing resource names) | -| `prefix` | A prefix for globally-unique dns-based resources | -| `location` | The Azure Region to deploy these resources in | - - -## Usage - -```bash -terraform plan \ - -var 'name=demo-docker' \ - -var 'environment=staging' \ - -var 'location=West US 2' - -var 'prefix=tfquickstard' \ - -out demo.tfplan - -terraform apply demo.tfplan -``` - -\* Example shown with [Bash](https://www.gnu.org/software/bash/). For [Powershell](https://docs.microsoft.com/en-us/powershell/) replace backslashes with backticks. \ No newline at end of file From 2cfbc95445aa19c3083a444adc925944cd2977de Mon Sep 17 00:00:00 2001 From: Neil Ye Date: Tue, 28 Nov 2023 09:26:35 +0800 Subject: [PATCH 33/64] 201-vmss-appgw-waf - remove unused case (#276) --- quickstart/201-vmss-appgw-waf/TestRecord.md | 600 -------------------- quickstart/201-vmss-appgw-waf/readme.md | 36 -- 2 files changed, 636 deletions(-) delete mode 100644 quickstart/201-vmss-appgw-waf/TestRecord.md delete mode 100644 quickstart/201-vmss-appgw-waf/readme.md diff --git a/quickstart/201-vmss-appgw-waf/TestRecord.md b/quickstart/201-vmss-appgw-waf/TestRecord.md deleted file mode 100644 index 5b66d5af7..000000000 --- a/quickstart/201-vmss-appgw-waf/TestRecord.md +++ /dev/null @@ -1,600 +0,0 @@ -## 12 Nov 23 00:30 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 05 Nov 23 00:31 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 29 Oct 23 00:36 UTC - -Success: false - -### Versions - -Terraform v1.6.0 -on linux_amd64 - -### Error - - - ---- - -## 22 Oct 23 04:59 UTC - -Success: false - -### Versions - -Terraform v1.5.7 -on linux_amd64 - -### Error - - - ---- - -## 15 Oct 23 05:20 UTC - -Success: false - -### Versions - -Terraform v1.5.7 -on linux_amd64 - -### Error - - - ---- - -## 08 Oct 23 05:01 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 01 Oct 23 00:34 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 24 Sep 23 04:47 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 20 Sep 23 11:08 UTC - -Success: false - -### Versions - -Terraform v1.5.6 -on linux_amd64 - -### Error - - - ---- - -## 17 Sep 23 04:37 UTC - -Success: false - -### Versions - -Terraform v1.5.5 -on linux_amd64 - -### Error - - - ---- - -## 10 Sep 23 05:10 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 03 Sep 23 00:35 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 27 Aug 23 05:23 UTC - -Success: false - -### Versions - -Terraform v1.5.4 -on linux_amd64 - -### Error - - - ---- - -## 20 Aug 23 00:22 UTC - -Success: false - -### Versions - -Terraform v1.5.3 -on linux_amd64 - -### Error - - - ---- - -## 13 Aug 23 00:16 UTC - -Success: false - -### Versions - -Terraform v1.5.2 -on linux_amd64 - -### Error - - - ---- - -## 06 Aug 23 00:19 UTC - -Success: false - -### Versions - -Terraform v1.5.1 -on linux_amd64 - -### Error - - - ---- - -## 30 Jul 23 00:21 UTC - -Success: false - -### Versions - -Terraform v1.5.1 -on linux_amd64 - -### Error - - - ---- - -## 16 Jul 23 04:50 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 09 Jul 23 00:23 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 02 Jul 23 00:18 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 25 Jun 23 00:17 UTC - -Success: false - -### Versions - -Terraform v1.5.0 -on linux_amd64 - -### Error - - - ---- - -## 18 Jun 23 00:23 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 11 Jun 23 00:23 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 04 Jun 23 00:19 UTC - -Success: false - -### Versions - -Terraform v1.4.6 -on linux_amd64 - -### Error - - - ---- - -## 28 May 23 00:10 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 21 May 23 04:45 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 14 May 23 04:26 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 07 May 23 00:17 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 30 Apr 23 00:23 UTC - -Success: false - -### Versions - -Terraform v1.4.5 -on linux_amd64 - -### Error - - - ---- - -## 23 Apr 23 04:29 UTC - -Success: false - -### Versions - -Terraform v1.4.4 -on linux_amd64 - -### Error - - - ---- - -## 16 Apr 23 00:28 UTC - -Success: false - -### Versions - -Terraform v1.4.3 -on linux_amd64 - -### Error - - - ---- - -## 09 Apr 23 00:29 UTC - -Success: false - -### Versions - -Terraform v1.4.2 -on linux_amd64 - -### Error - - - ---- - -## 02 Apr 23 04:33 UTC - -Success: false - -### Versions - -Terraform v1.4.1 -on linux_amd64 - -### Error - - - ---- - -## 26 Mar 23 05:10 UTC - -Success: false - -### Versions - -Terraform v1.4.1 -on linux_amd64 - -### Error - - - ---- - -## 19 Mar 23 04:23 UTC - -Success: false - -### Versions - -Terraform v1.4.0 -on linux_amd64 - -### Error - - - ---- - -## 12 Mar 23 05:15 UTC - -Success: false - -### Versions - -Terraform v1.3.8 -on linux_amd64 - -### Error - - - ---- - -## 08 Mar 23 18:28 UTC - -Success: false - -### Versions - -Terraform v1.3.8 -on linux_amd64 - -### Error - - - ---- - -## 19 Feb 23 00:18 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - -## 12 Feb 23 00:16 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - -## 05 Feb 23 00:27 UTC - -Success: false - -### Versions - -Terraform v1.3.7 -on linux_amd64 - -### Error - - - ---- - diff --git a/quickstart/201-vmss-appgw-waf/readme.md b/quickstart/201-vmss-appgw-waf/readme.md deleted file mode 100644 index d8a6486e8..000000000 --- a/quickstart/201-vmss-appgw-waf/readme.md +++ /dev/null @@ -1,36 +0,0 @@ -# Scalable Virtual Machine behind a Web Application Firewall - -This template deploys a Virtual Machine Scale Set fronted by an Azure Application Gateway that has the Web Application Firewall (WAF) enabled. - -## Resources - -| Terraform Resource Type | Description | -| - | - | -| `azurerm_resource_group` | The resource group all resources are deployed into | -| `azurerm_virtual_machine_scale_set` | The storage account used to host the website | -| `azurerm_application_gateway` | The storage account used to host the website | - -## Variables - -| Name | Description | -|-|-| -| `name` | Name of the deployment | -| `environment` | The deployment environment name (used for postfixing resource names) | -| `prefix` | A prefix for globally-unique dns-based resources | -| `location` | The Azure Region to deploy these resources in | - - -## Usage - -```bash -terraform plan \ - -var 'name=demo-docker' \ - -var 'environment=staging' \ - -var 'location=West US 2' - -var 'prefix=tfquickstard' \ - -out demo.tfplan - -terraform apply demo.tfplan -``` - -\* Example shown with [Bash](https://www.gnu.org/software/bash/). For [Powershell](https://docs.microsoft.com/en-us/powershell/) replace backslashes with backticks. \ No newline at end of file From 75c6fa2455da04c8452eb6910c0719c83fb3a952 Mon Sep 17 00:00:00 2001 From: Michael Bender Date: Thu, 16 Nov 2023 12:03:20 -0600 Subject: [PATCH 34/64] update terraform --- .../main.tf | 166 ++++++++++++++++++ .../outputs.tf | 7 + .../providers.tf | 16 ++ .../readme.md | 29 +++ .../variables.tf | 11 ++ 5 files changed, 229 insertions(+) create mode 100644 quickstart/101-virtual-network-manager-create-management-group-scope/main.tf create mode 100644 quickstart/101-virtual-network-manager-create-management-group-scope/outputs.tf create mode 100644 quickstart/101-virtual-network-manager-create-management-group-scope/providers.tf create mode 100644 quickstart/101-virtual-network-manager-create-management-group-scope/readme.md create mode 100644 quickstart/101-virtual-network-manager-create-management-group-scope/variables.tf diff --git a/quickstart/101-virtual-network-manager-create-management-group-scope/main.tf b/quickstart/101-virtual-network-manager-create-management-group-scope/main.tf new file mode 100644 index 000000000..ee33b209b --- /dev/null +++ b/quickstart/101-virtual-network-manager-create-management-group-scope/main.tf @@ -0,0 +1,166 @@ +# Create the Resource Group + +resource "random_pet" "rg_name" { + prefix = var.resource_group_name_prefix +} + +resource "azurerm_resource_group" "rg" { + location = var.resource_group_location + name = random_pet.rg_name.id +} + +# Create three virtual networks +resource "random_string" "prefix" { + length = 4 + special = false + upper = false +} + +resource "random_pet" "virtual_network_name" { + prefix = "vnet-${random_string.prefix.result}" +} +resource "azurerm_virtual_network" "vnet" { + count = 3 + + name = "${random_pet.virtual_network_name.id}-0${count.index}" + resource_group_name = azurerm_resource_group.rg.name + location = azurerm_resource_group.rg.location + address_space = ["10.${count.index}.0.0/16"] +} + +# Add a subnet to each virtual network + +resource "azurerm_subnet" "subnet_vnet" { + count = 3 + + name = "default" + virtual_network_name = azurerm_virtual_network.vnet[count.index].name + resource_group_name = azurerm_resource_group.rg.name + address_prefixes = ["10.${count.index}.0.0/24"] +} + +data "azurerm_subscription" "current" { +} + +# Create a Management Group + +resource "random_pet" "management_group_name" { + prefix = "AVNM-management-group" +} +resource "azurerm_management_group" "mg" { + display_name = random_pet.management_group_name.id + + subscription_ids = [ + data.azurerm_subscription.current.subscription_id, + ] +} + +# register Microsoft.Network to the Management Group + +resource "null_resource" "register_rp_to_mg" { + provisioner "local-exec" { + command = < Date: Thu, 16 Nov 2023 13:27:21 -0600 Subject: [PATCH 35/64] finished testing --- .../main.tf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/quickstart/101-virtual-network-manager-create-management-group-scope/main.tf b/quickstart/101-virtual-network-manager-create-management-group-scope/main.tf index ee33b209b..570692660 100644 --- a/quickstart/101-virtual-network-manager-create-management-group-scope/main.tf +++ b/quickstart/101-virtual-network-manager-create-management-group-scope/main.tf @@ -11,9 +11,9 @@ resource "azurerm_resource_group" "rg" { # Create three virtual networks resource "random_string" "prefix" { - length = 4 + length = 4 special = false - upper = false + upper = false } resource "random_pet" "virtual_network_name" { @@ -65,9 +65,9 @@ resource "null_resource" "register_rp_to_mg" { } } -resource "time_sleep" "wait_5_seconds" { +resource "time_sleep" "wait_5_seconds" { create_duration = "5s" - depends_on = [null_resource.register_rp_to_mg] + depends_on = [null_resource.register_rp_to_mg] } # Create a Virtual Network Manager instance @@ -98,7 +98,7 @@ resource "random_pet" "network_group_policy_name" { } resource "azurerm_policy_definition" "network_group_policy" { - name = "${random_pet.network_group_policy_name.id}" + name = random_pet.network_group_policy_name.id policy_type = "Custom" mode = "Microsoft.Network.Data" display_name = "Policy Definition for Network Group" From 5895b4f1c47b43e075ef437a04d3c6484357b8ed Mon Sep 17 00:00:00 2001 From: Michael Bender Date: Fri, 17 Nov 2023 09:33:04 -0600 Subject: [PATCH 36/64] updates from Review --- .../providers.tf | 2 +- .../readme.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/quickstart/101-virtual-network-manager-create-management-group-scope/providers.tf b/quickstart/101-virtual-network-manager-create-management-group-scope/providers.tf index fac66bf76..d6b429ccd 100644 --- a/quickstart/101-virtual-network-manager-create-management-group-scope/providers.tf +++ b/quickstart/101-virtual-network-manager-create-management-group-scope/providers.tf @@ -3,7 +3,7 @@ terraform { required_providers { azurerm = { source = "hashicorp/azurerm" - version = ">= 3.56.0" + version = "~> 3.56.0, < 4.0" } random = { source = "hashicorp/random" diff --git a/quickstart/101-virtual-network-manager-create-management-group-scope/readme.md b/quickstart/101-virtual-network-manager-create-management-group-scope/readme.md index 609962453..eb76db5e8 100644 --- a/quickstart/101-virtual-network-manager-create-management-group-scope/readme.md +++ b/quickstart/101-virtual-network-manager-create-management-group-scope/readme.md @@ -1,4 +1,4 @@ -# Azure resource group +# Azure Virtual Network Manager with management group scope This template deploys an Azure Virtual Network Manager instance with a connectivity configuration for a Mesh topology using a management group scope. It includes resources including virtual networks, subnets, and more. From 99037bb0e53780825dffb6d82d3fb31f5e11b520 Mon Sep 17 00:00:00 2001 From: hezijie Date: Tue, 21 Nov 2023 16:31:26 +0800 Subject: [PATCH 37/64] fix example and e2e test --- .../main.tf | 14 ++++++-- .../variables.tf | 6 ++++ test/e2e/discard_writer.go | 11 ++++++ test/e2e/quickstart_test.go | 34 ++++++++++++++++++- 4 files changed, 61 insertions(+), 4 deletions(-) create mode 100644 test/e2e/discard_writer.go diff --git a/quickstart/101-virtual-network-manager-create-management-group-scope/main.tf b/quickstart/101-virtual-network-manager-create-management-group-scope/main.tf index 570692660..5ff10534e 100644 --- a/quickstart/101-virtual-network-manager-create-management-group-scope/main.tf +++ b/quickstart/101-virtual-network-manager-create-management-group-scope/main.tf @@ -47,6 +47,7 @@ data "azurerm_subscription" "current" { resource "random_pet" "management_group_name" { prefix = "AVNM-management-group" } + resource "azurerm_management_group" "mg" { display_name = random_pet.management_group_name.id @@ -55,14 +56,21 @@ resource "azurerm_management_group" "mg" { ] } +data "azurerm_client_config" "this" {} + +resource "azurerm_role_assignment" "management_group_owner" { + principal_id = coalesce(var.msi_id, data.azurerm_client_config.this.object_id) + scope = azurerm_management_group.mg.id + role_definition_name = "Contributor" +} + # register Microsoft.Network to the Management Group resource "null_resource" "register_rp_to_mg" { provisioner "local-exec" { - command = < Date: Thu, 30 Nov 2023 21:56:33 +0000 Subject: [PATCH 38/64] Update TestRecord --- .../TestRecord.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md diff --git a/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md b/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md new file mode 100644 index 000000000..5527b7c44 --- /dev/null +++ b/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md @@ -0,0 +1,19 @@ +## 30 Nov 23 21:12 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.56.0 ++ provider registry.terraform.io/hashicorp/null v3.2.2 ++ provider registry.terraform.io/hashicorp/random v3.5.1 ++ provider registry.terraform.io/hashicorp/time v0.9.2 + +### Error + + + +--- + From 91b46e5a4cbd60c699b038b5a2d8b5831562a370 Mon Sep 17 00:00:00 2001 From: zjhe Date: Mon, 4 Dec 2023 10:00:12 +0800 Subject: [PATCH 39/64] make e2e tests parallel --- .github/workflows/weekly-e2e.yaml | 2 +- test/e2e/quickstart_test.go | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/weekly-e2e.yaml b/.github/workflows/weekly-e2e.yaml index 4392e8608..3db97be57 100644 --- a/.github/workflows/weekly-e2e.yaml +++ b/.github/workflows/weekly-e2e.yaml @@ -21,7 +21,7 @@ jobs: az login --identity --username $MSI_ID > /dev/null export ARM_SUBSCRIPTION_ID=$(az login --identity --username $MSI_ID | jq -r '.[0] | .id') export ARM_TENANT_ID=$(az login --identity --username $MSI_ID | jq -r '.[0] | .tenantId') - docker run --rm -v $(pwd):/src -w /src/test -e MSI_ID -e ARM_SUBSCRIPTION_ID -e ARM_TENANT_ID -e ARM_USE_MSI=true -e CHANGED_FOLDERS mcr.microsoft.com/azterraform sh -c "go mod tidy && go test -timeout=1440m -v ./e2e" + docker run --rm -v $(pwd):/src -w /src/test -e MSI_ID -e ARM_SUBSCRIPTION_ID -e ARM_TENANT_ID -e ARM_USE_MSI=true -e CHANGED_FOLDERS mcr.microsoft.com/azterraform sh -c "go mod tidy && go test -timeout=1440m -parallel 10 -v ./e2e" - name: Update run: | docker run --rm -v $(pwd):/src -w /src mcr.microsoft.com/azterraform sh scripts/update-test-record.sh diff --git a/test/e2e/quickstart_test.go b/test/e2e/quickstart_test.go index 691995a3f..a00e2547e 100644 --- a/test/e2e/quickstart_test.go +++ b/test/e2e/quickstart_test.go @@ -23,6 +23,7 @@ var speicalTests = map[string]func(*testing.T){ } func Test_Quickstarts(t *testing.T) { + t.Parallel() msiId := os.Getenv("MSI_ID") if msiId != "" { _ = os.Setenv("TF_VAR_msi_id", msiId) From e2518d4322b18423a4908f32e36703f7481d29fc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 4 Dec 2023 04:23:22 +0000 Subject: [PATCH 40/64] Update TestRecord --- .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-application-gateway/TestRecord.md | 17 + .../101-attestation-provider/TestRecord.md | 18 ++ .../TestRecord.md | 18 ++ .../101-azapi-lab-services/TestRecord.md | 17 + .../101-azfw-with-fwpolicy/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-azure-cognitive-search/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../101-azure-virtual-desktop/TestRecord.md | 18 ++ .../TestRecord.md | 17 + .../101-cdn-with-custom-origin/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-aad-rbac/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-autoscale/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-free-tier/TestRecord.md | 17 + .../101-cosmos-db-manualscale/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-databricks-cmk-dbfs/TestRecord.md | 17 + .../101-ddos-protection-plan/TestRecord.md | 17 + quickstart/101-devtest-labs/TestRecord.md | 17 + quickstart/101-dns_zone/TestRecord.md | 17 + .../101-firewall-standard/TestRecord.md | 17 + .../101-front-door-classic/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../TestRecord.md | 17 + quickstart/101-key-vault-key/TestRecord.md | 17 + quickstart/101-machine-learning/TestRecord.md | 17 + quickstart/101-managed-instance/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/101-notification-hub/TestRecord.md | 17 + quickstart/101-resource-group/TestRecord.md | 17 + quickstart/101-sql-database/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-storage-static-website/TestRecord.md | 17 + .../101-stream-analytics-job/TestRecord.md | 17 + quickstart/101-synapse/TestRecord.md | 18 ++ .../TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 17 + quickstart/101-vm-auto-shutdown/TestRecord.md | 17 + quickstart/101-vm-cluster-linux/TestRecord.md | 18 ++ .../101-vm-cluster-windows/TestRecord.md | 17 + .../101-vm-with-infrastructure/TestRecord.md | 18 ++ .../101-web-app-linux-container/TestRecord.md | 17 + .../101-web-app-linux-java/TestRecord.md | 17 + .../101-web-app-windows-dotnet/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/201-aks-acr-identity/TestRecord.md | 17 + quickstart/201-aks-helm/TestRecord.md | 18 ++ .../201-aks-log-analytics/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../201-azfw-multi-addresses/TestRecord.md | 17 + .../201-azfw-with-avzones/TestRecord.md | 17 + .../201-azfw-with-ipgroups/TestRecord.md | 18 ++ .../201-azfw-with-secure-hub/TestRecord.md | 17 + .../201-azure-pipelines-ci-cd/TestRecord.md | 15 + .../201-confidential-os-disk/TestRecord.md | 17 + quickstart/201-confidential-vm/TestRecord.md | 18 ++ .../201-confidential-vmss/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/201-function-app/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 18 ++ quickstart/201-mysql-fs-db/TestRecord.md | 17 + quickstart/201-postgresql-fs-db/TestRecord.md | 17 + quickstart/201-synapse-secure/TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 17 + quickstart/201-vmss-jumpbox/TestRecord.md | 17 + .../201-web-app-docker-acr/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 32 ++ quickstart/301-aks-enterprise/TestRecord.md | 293 ++++++++++++++++++ .../301-aks-private-cluster/TestRecord.md | 17 + quickstart/301-hub-spoke/TestRecord.md | 16 + .../TestRecord.md | 32 ++ .../301-service-fabric-apim/TestRecord.md | 18 ++ quickstart/301-service-fabric/TestRecord.md | 18 ++ quickstart/template/TestRecord.md | 16 + 86 files changed, 1785 insertions(+) diff --git a/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md b/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md index a27108e5f..7236fd65d 100644 --- a/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md +++ b/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:19 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 00:23 UTC Success: true diff --git a/quickstart/101-analysis-services-create/TestRecord.md b/quickstart/101-analysis-services-create/TestRecord.md index ddde40363..80b70ca54 100644 --- a/quickstart/101-analysis-services-create/TestRecord.md +++ b/quickstart/101-analysis-services-create/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:17 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 06:10 UTC Success: true diff --git a/quickstart/101-application-gateway/TestRecord.md b/quickstart/101-application-gateway/TestRecord.md index cf19147ad..781f2b842 100644 --- a/quickstart/101-application-gateway/TestRecord.md +++ b/quickstart/101-application-gateway/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:37 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 06:21 UTC Success: true diff --git a/quickstart/101-attestation-provider/TestRecord.md b/quickstart/101-attestation-provider/TestRecord.md index 55989ce28..62046350b 100644 --- a/quickstart/101-attestation-provider/TestRecord.md +++ b/quickstart/101-attestation-provider/TestRecord.md @@ -1,3 +1,21 @@ +## 04 Dec 23 03:14 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 26 Nov 23 06:07 UTC Success: true diff --git a/quickstart/101-azapi-eventhub-network-rules/TestRecord.md b/quickstart/101-azapi-eventhub-network-rules/TestRecord.md index e980c449a..f5af23ea7 100644 --- a/quickstart/101-azapi-eventhub-network-rules/TestRecord.md +++ b/quickstart/101-azapi-eventhub-network-rules/TestRecord.md @@ -1,3 +1,21 @@ +## 04 Dec 23 03:18 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v0.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 ++ provider registry.terraform.io/hashicorp/random v3.1.2 + +### Error + + + +--- + ## 26 Nov 23 05:43 UTC Success: true diff --git a/quickstart/101-azapi-lab-services/TestRecord.md b/quickstart/101-azapi-lab-services/TestRecord.md index 60bb2ed10..0c0ba1b56 100644 --- a/quickstart/101-azapi-lab-services/TestRecord.md +++ b/quickstart/101-azapi-lab-services/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:14 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v0.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 + +### Error + + + +--- + ## 26 Nov 23 06:06 UTC Success: false diff --git a/quickstart/101-azfw-with-fwpolicy/TestRecord.md b/quickstart/101-azfw-with-fwpolicy/TestRecord.md index c83823be9..58cf3e68b 100644 --- a/quickstart/101-azfw-with-fwpolicy/TestRecord.md +++ b/quickstart/101-azfw-with-fwpolicy/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:38 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 06:05 UTC Success: true diff --git a/quickstart/101-azure-api-management-create/TestRecord.md b/quickstart/101-azure-api-management-create/TestRecord.md index a2da08d45..33a5c38c5 100644 --- a/quickstart/101-azure-api-management-create/TestRecord.md +++ b/quickstart/101-azure-api-management-create/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:38 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 06:06 UTC Success: true diff --git a/quickstart/101-azure-cognitive-search/TestRecord.md b/quickstart/101-azure-cognitive-search/TestRecord.md index 51f626cf6..84e59c2e6 100644 --- a/quickstart/101-azure-cognitive-search/TestRecord.md +++ b/quickstart/101-azure-cognitive-search/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:12 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 05:16 UTC Success: true diff --git a/quickstart/101-azure-virtual-desktop-anf/TestRecord.md b/quickstart/101-azure-virtual-desktop-anf/TestRecord.md index 0dcf70b16..a7e8cff15 100644 --- a/quickstart/101-azure-virtual-desktop-anf/TestRecord.md +++ b/quickstart/101-azure-virtual-desktop-anf/TestRecord.md @@ -1,3 +1,21 @@ +## 04 Dec 23 03:11 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.46.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 05:38 UTC Success: false diff --git a/quickstart/101-azure-virtual-desktop/TestRecord.md b/quickstart/101-azure-virtual-desktop/TestRecord.md index 967b883a2..f9774578b 100644 --- a/quickstart/101-azure-virtual-desktop/TestRecord.md +++ b/quickstart/101-azure-virtual-desktop/TestRecord.md @@ -1,3 +1,21 @@ +## 04 Dec 23 03:11 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.46.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 05:38 UTC Success: false diff --git a/quickstart/101-batch-account-with-storage/TestRecord.md b/quickstart/101-batch-account-with-storage/TestRecord.md index 621a537db..7da4e3be9 100644 --- a/quickstart/101-batch-account-with-storage/TestRecord.md +++ b/quickstart/101-batch-account-with-storage/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:13 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 05:38 UTC Success: true diff --git a/quickstart/101-cdn-with-custom-origin/TestRecord.md b/quickstart/101-cdn-with-custom-origin/TestRecord.md index 060ec4eaf..169e90833 100644 --- a/quickstart/101-cdn-with-custom-origin/TestRecord.md +++ b/quickstart/101-cdn-with-custom-origin/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:17 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 05:41 UTC Success: true diff --git a/quickstart/101-cognitive-services-account/TestRecord.md b/quickstart/101-cognitive-services-account/TestRecord.md index 8bf646759..f57dde2a1 100644 --- a/quickstart/101-cognitive-services-account/TestRecord.md +++ b/quickstart/101-cognitive-services-account/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:11 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 05:32 UTC Success: true diff --git a/quickstart/101-cosmos-db-aad-rbac/TestRecord.md b/quickstart/101-cosmos-db-aad-rbac/TestRecord.md index 82a29a342..fbe36d3b0 100644 --- a/quickstart/101-cosmos-db-aad-rbac/TestRecord.md +++ b/quickstart/101-cosmos-db-aad-rbac/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:22 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 05:36 UTC Success: true diff --git a/quickstart/101-cosmos-db-analyticalstore/TestRecord.md b/quickstart/101-cosmos-db-analyticalstore/TestRecord.md index 67ce9c728..1d3810b45 100644 --- a/quickstart/101-cosmos-db-analyticalstore/TestRecord.md +++ b/quickstart/101-cosmos-db-analyticalstore/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:22 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 05:31 UTC Success: true diff --git a/quickstart/101-cosmos-db-autoscale/TestRecord.md b/quickstart/101-cosmos-db-autoscale/TestRecord.md index 796eba4f9..71a2512c6 100644 --- a/quickstart/101-cosmos-db-autoscale/TestRecord.md +++ b/quickstart/101-cosmos-db-autoscale/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:14 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 04:17 UTC Success: true diff --git a/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md b/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md index f267a1cbc..7b93c14b3 100644 --- a/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md +++ b/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:11 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 05:22 UTC Success: true diff --git a/quickstart/101-cosmos-db-free-tier/TestRecord.md b/quickstart/101-cosmos-db-free-tier/TestRecord.md index 3903504c5..4829336e8 100644 --- a/quickstart/101-cosmos-db-free-tier/TestRecord.md +++ b/quickstart/101-cosmos-db-free-tier/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:10 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 05:15 UTC Success: true diff --git a/quickstart/101-cosmos-db-manualscale/TestRecord.md b/quickstart/101-cosmos-db-manualscale/TestRecord.md index 3e8e19d8f..adfd0a184 100644 --- a/quickstart/101-cosmos-db-manualscale/TestRecord.md +++ b/quickstart/101-cosmos-db-manualscale/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:08 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 05:09 UTC Success: true diff --git a/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md b/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md index 9863cce79..58f8a5980 100644 --- a/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md +++ b/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:10 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 05:02 UTC Success: true diff --git a/quickstart/101-databricks-cmk-dbfs/TestRecord.md b/quickstart/101-databricks-cmk-dbfs/TestRecord.md index ede596aa0..e5708ad11 100644 --- a/quickstart/101-databricks-cmk-dbfs/TestRecord.md +++ b/quickstart/101-databricks-cmk-dbfs/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:01 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 04:56 UTC Success: true diff --git a/quickstart/101-ddos-protection-plan/TestRecord.md b/quickstart/101-ddos-protection-plan/TestRecord.md index 884184804..50ba6544a 100644 --- a/quickstart/101-ddos-protection-plan/TestRecord.md +++ b/quickstart/101-ddos-protection-plan/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:55 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 04:49 UTC Success: true diff --git a/quickstart/101-devtest-labs/TestRecord.md b/quickstart/101-devtest-labs/TestRecord.md index 05b3f6408..9667fd68e 100644 --- a/quickstart/101-devtest-labs/TestRecord.md +++ b/quickstart/101-devtest-labs/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:12 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 04:47 UTC Success: true diff --git a/quickstart/101-dns_zone/TestRecord.md b/quickstart/101-dns_zone/TestRecord.md index b7f6e6498..a4823ec77 100644 --- a/quickstart/101-dns_zone/TestRecord.md +++ b/quickstart/101-dns_zone/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:54 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 04:28 UTC Success: true diff --git a/quickstart/101-firewall-standard/TestRecord.md b/quickstart/101-firewall-standard/TestRecord.md index 92869b845..2cdcabbe1 100644 --- a/quickstart/101-firewall-standard/TestRecord.md +++ b/quickstart/101-firewall-standard/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:13 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 04:48 UTC Success: true diff --git a/quickstart/101-front-door-classic/TestRecord.md b/quickstart/101-front-door-classic/TestRecord.md index ebfb5ab86..55d8bd887 100644 --- a/quickstart/101-front-door-classic/TestRecord.md +++ b/quickstart/101-front-door-classic/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:55 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 04:25 UTC Success: true diff --git a/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md b/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md index 76189b768..27b78d929 100644 --- a/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md +++ b/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md @@ -1,3 +1,21 @@ +## 04 Dec 23 02:57 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 26 Nov 23 04:27 UTC Success: true diff --git a/quickstart/101-front-door-standard-premium/TestRecord.md b/quickstart/101-front-door-standard-premium/TestRecord.md index 27ccb1e6b..26128c03e 100644 --- a/quickstart/101-front-door-standard-premium/TestRecord.md +++ b/quickstart/101-front-door-standard-premium/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:53 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 04:20 UTC Success: true diff --git a/quickstart/101-key-vault-key/TestRecord.md b/quickstart/101-key-vault-key/TestRecord.md index c981aeca6..153f16623 100644 --- a/quickstart/101-key-vault-key/TestRecord.md +++ b/quickstart/101-key-vault-key/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:53 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 04:21 UTC Success: true diff --git a/quickstart/101-machine-learning/TestRecord.md b/quickstart/101-machine-learning/TestRecord.md index 88d58ac2e..a82ba1128 100644 --- a/quickstart/101-machine-learning/TestRecord.md +++ b/quickstart/101-machine-learning/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:58 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 04:17 UTC Success: true diff --git a/quickstart/101-managed-instance/TestRecord.md b/quickstart/101-managed-instance/TestRecord.md index bea4718a3..ff5816e3e 100644 --- a/quickstart/101-managed-instance/TestRecord.md +++ b/quickstart/101-managed-instance/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 04:23 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 02:15 UTC Success: true diff --git a/quickstart/101-managed-lustre-create-filesystem/TestRecord.md b/quickstart/101-managed-lustre-create-filesystem/TestRecord.md index c08b0e825..5b3e6aff3 100644 --- a/quickstart/101-managed-lustre-create-filesystem/TestRecord.md +++ b/quickstart/101-managed-lustre-create-filesystem/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:08 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 01:03 UTC Success: true diff --git a/quickstart/101-notification-hub/TestRecord.md b/quickstart/101-notification-hub/TestRecord.md index 831a0032d..52236b010 100644 --- a/quickstart/101-notification-hub/TestRecord.md +++ b/quickstart/101-notification-hub/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:52 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 00:48 UTC Success: true diff --git a/quickstart/101-resource-group/TestRecord.md b/quickstart/101-resource-group/TestRecord.md index 96fadb2d4..eeff65a56 100644 --- a/quickstart/101-resource-group/TestRecord.md +++ b/quickstart/101-resource-group/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:47 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 00:42 UTC Success: true diff --git a/quickstart/101-sql-database/TestRecord.md b/quickstart/101-sql-database/TestRecord.md index 518b88ae2..2624a4c69 100644 --- a/quickstart/101-sql-database/TestRecord.md +++ b/quickstart/101-sql-database/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:52 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 00:43 UTC Success: true diff --git a/quickstart/101-sql-security-alert-policy/TestRecord.md b/quickstart/101-sql-security-alert-policy/TestRecord.md index 3af0879f7..119ed6b70 100644 --- a/quickstart/101-sql-security-alert-policy/TestRecord.md +++ b/quickstart/101-sql-security-alert-policy/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:49 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 00:38 UTC Success: true diff --git a/quickstart/101-storage-account-with-static-website/TestRecord.md b/quickstart/101-storage-account-with-static-website/TestRecord.md index cacb4b0ed..3a1239e4d 100644 --- a/quickstart/101-storage-account-with-static-website/TestRecord.md +++ b/quickstart/101-storage-account-with-static-website/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:47 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 00:35 UTC Success: true diff --git a/quickstart/101-storage-static-website/TestRecord.md b/quickstart/101-storage-static-website/TestRecord.md index 61f285227..040bead85 100644 --- a/quickstart/101-storage-static-website/TestRecord.md +++ b/quickstart/101-storage-static-website/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:46 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 26 Nov 23 00:42 UTC Success: true diff --git a/quickstart/101-stream-analytics-job/TestRecord.md b/quickstart/101-stream-analytics-job/TestRecord.md index 498bdb6ef..6df0831c0 100644 --- a/quickstart/101-stream-analytics-job/TestRecord.md +++ b/quickstart/101-stream-analytics-job/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:43 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 00:30 UTC Success: true diff --git a/quickstart/101-synapse/TestRecord.md b/quickstart/101-synapse/TestRecord.md index 26a12cdc0..13b8c5baa 100644 --- a/quickstart/101-synapse/TestRecord.md +++ b/quickstart/101-synapse/TestRecord.md @@ -1,3 +1,21 @@ +## 04 Dec 23 02:51 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/http v3.4.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 00:34 UTC Success: true diff --git a/quickstart/101-traffic-manager-external-endpoint/TestRecord.md b/quickstart/101-traffic-manager-external-endpoint/TestRecord.md index 5a7389837..49bf19fc5 100644 --- a/quickstart/101-traffic-manager-external-endpoint/TestRecord.md +++ b/quickstart/101-traffic-manager-external-endpoint/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:43 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 00:26 UTC Success: true diff --git a/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md b/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md index 5527b7c44..8d73d3ff3 100644 --- a/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md +++ b/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md @@ -1,3 +1,22 @@ +## 04 Dec 23 02:25 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.56.0 ++ provider registry.terraform.io/hashicorp/null v3.2.2 ++ provider registry.terraform.io/hashicorp/random v3.5.1 ++ provider registry.terraform.io/hashicorp/time v0.9.2 + +### Error + + + +--- + ## 30 Nov 23 21:12 UTC Success: true diff --git a/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md b/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md index a2c77bcc3..494fe2a7e 100644 --- a/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md +++ b/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:23 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 00:29 UTC Success: true diff --git a/quickstart/101-vm-auto-shutdown/TestRecord.md b/quickstart/101-vm-auto-shutdown/TestRecord.md index 4b38bb872..ae148d963 100644 --- a/quickstart/101-vm-auto-shutdown/TestRecord.md +++ b/quickstart/101-vm-auto-shutdown/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:22 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 00:25 UTC Success: true diff --git a/quickstart/101-vm-cluster-linux/TestRecord.md b/quickstart/101-vm-cluster-linux/TestRecord.md index 6cc4cf2d0..a3ac271de 100644 --- a/quickstart/101-vm-cluster-linux/TestRecord.md +++ b/quickstart/101-vm-cluster-linux/TestRecord.md @@ -1,3 +1,21 @@ +## 04 Dec 23 03:22 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 04:09 UTC Success: true diff --git a/quickstart/101-vm-cluster-windows/TestRecord.md b/quickstart/101-vm-cluster-windows/TestRecord.md index 7bb616ebd..b0d963083 100644 --- a/quickstart/101-vm-cluster-windows/TestRecord.md +++ b/quickstart/101-vm-cluster-windows/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:47 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 04:04 UTC Success: true diff --git a/quickstart/101-vm-with-infrastructure/TestRecord.md b/quickstart/101-vm-with-infrastructure/TestRecord.md index 0210a2308..3d565b283 100644 --- a/quickstart/101-vm-with-infrastructure/TestRecord.md +++ b/quickstart/101-vm-with-infrastructure/TestRecord.md @@ -1,3 +1,21 @@ +## 04 Dec 23 02:46 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 04:04 UTC Success: true diff --git a/quickstart/101-web-app-linux-container/TestRecord.md b/quickstart/101-web-app-linux-container/TestRecord.md index bc3ca1ff0..d3c67bc34 100644 --- a/quickstart/101-web-app-linux-container/TestRecord.md +++ b/quickstart/101-web-app-linux-container/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:43 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 04:00 UTC Success: true diff --git a/quickstart/101-web-app-linux-java/TestRecord.md b/quickstart/101-web-app-linux-java/TestRecord.md index 632d2bed4..16bbb9fb6 100644 --- a/quickstart/101-web-app-linux-java/TestRecord.md +++ b/quickstart/101-web-app-linux-java/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:42 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 03:59 UTC Success: true diff --git a/quickstart/101-web-app-windows-dotnet/TestRecord.md b/quickstart/101-web-app-windows-dotnet/TestRecord.md index 47d87dd19..ff878ef25 100644 --- a/quickstart/101-web-app-windows-dotnet/TestRecord.md +++ b/quickstart/101-web-app-windows-dotnet/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:41 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 03:57 UTC Success: true diff --git a/quickstart/101-windows-vm-with-iis-server/TestRecord.md b/quickstart/101-windows-vm-with-iis-server/TestRecord.md index a89f1ef19..afd42bfc2 100644 --- a/quickstart/101-windows-vm-with-iis-server/TestRecord.md +++ b/quickstart/101-windows-vm-with-iis-server/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:53 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 03:58 UTC Success: true diff --git a/quickstart/201-aks-acr-identity/TestRecord.md b/quickstart/201-aks-acr-identity/TestRecord.md index 1bf30675a..cefeaf264 100644 --- a/quickstart/201-aks-acr-identity/TestRecord.md +++ b/quickstart/201-aks-acr-identity/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:40 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 03:56 UTC Success: true diff --git a/quickstart/201-aks-helm/TestRecord.md b/quickstart/201-aks-helm/TestRecord.md index 0e739b49e..3ad7cc140 100644 --- a/quickstart/201-aks-helm/TestRecord.md +++ b/quickstart/201-aks-helm/TestRecord.md @@ -1,3 +1,21 @@ +## 04 Dec 23 02:41 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/helm v2.9.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 03:48 UTC Success: true diff --git a/quickstart/201-aks-log-analytics/TestRecord.md b/quickstart/201-aks-log-analytics/TestRecord.md index b97d9ef6e..6cc62ca9d 100644 --- a/quickstart/201-aks-log-analytics/TestRecord.md +++ b/quickstart/201-aks-log-analytics/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:41 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 26 Nov 23 03:47 UTC Success: true diff --git a/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md b/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md index b867bb6ca..5e56173bb 100644 --- a/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md +++ b/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md @@ -1,3 +1,21 @@ +## 04 Dec 23 02:40 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/kubernetes v2.24.0 ++ provider registry.terraform.io/hashicorp/random v3.3.2 + +### Error + + + +--- + ## 26 Nov 23 03:38 UTC Success: true diff --git a/quickstart/201-azfw-multi-addresses/TestRecord.md b/quickstart/201-azfw-multi-addresses/TestRecord.md index e7502d3a4..84d87cff6 100644 --- a/quickstart/201-azfw-multi-addresses/TestRecord.md +++ b/quickstart/201-azfw-multi-addresses/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:49 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 03:36 UTC Success: true diff --git a/quickstart/201-azfw-with-avzones/TestRecord.md b/quickstart/201-azfw-with-avzones/TestRecord.md index 78f841512..bc7b3b042 100644 --- a/quickstart/201-azfw-with-avzones/TestRecord.md +++ b/quickstart/201-azfw-with-avzones/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:50 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 03:17 UTC Success: true diff --git a/quickstart/201-azfw-with-ipgroups/TestRecord.md b/quickstart/201-azfw-with-ipgroups/TestRecord.md index c5a5acf61..654092526 100644 --- a/quickstart/201-azfw-with-ipgroups/TestRecord.md +++ b/quickstart/201-azfw-with-ipgroups/TestRecord.md @@ -1,3 +1,21 @@ +## 04 Dec 23 02:47 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 02:57 UTC Success: true diff --git a/quickstart/201-azfw-with-secure-hub/TestRecord.md b/quickstart/201-azfw-with-secure-hub/TestRecord.md index 1fe74568b..c90702e11 100644 --- a/quickstart/201-azfw-with-secure-hub/TestRecord.md +++ b/quickstart/201-azfw-with-secure-hub/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 03:23 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 03:28 UTC Success: true diff --git a/quickstart/201-azure-pipelines-ci-cd/TestRecord.md b/quickstart/201-azure-pipelines-ci-cd/TestRecord.md index 1532ccc67..efab2bd95 100644 --- a/quickstart/201-azure-pipelines-ci-cd/TestRecord.md +++ b/quickstart/201-azure-pipelines-ci-cd/TestRecord.md @@ -1,3 +1,18 @@ +## 04 Dec 23 02:28 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 + +### Error + + + +--- + ## 26 Nov 23 02:37 UTC Success: true diff --git a/quickstart/201-confidential-os-disk/TestRecord.md b/quickstart/201-confidential-os-disk/TestRecord.md index 4157152f1..f49eab027 100644 --- a/quickstart/201-confidential-os-disk/TestRecord.md +++ b/quickstart/201-confidential-os-disk/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:29 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 02:37 UTC Success: true diff --git a/quickstart/201-confidential-vm/TestRecord.md b/quickstart/201-confidential-vm/TestRecord.md index 701451f67..591ffd1c7 100644 --- a/quickstart/201-confidential-vm/TestRecord.md +++ b/quickstart/201-confidential-vm/TestRecord.md @@ -1,3 +1,21 @@ +## 04 Dec 23 02:32 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 26 Nov 23 02:40 UTC Success: true diff --git a/quickstart/201-confidential-vmss/TestRecord.md b/quickstart/201-confidential-vmss/TestRecord.md index 5c900ea1d..7bb9a705f 100644 --- a/quickstart/201-confidential-vmss/TestRecord.md +++ b/quickstart/201-confidential-vmss/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:31 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 02:34 UTC Success: true diff --git a/quickstart/201-function-app-key-vault-ref/TestRecord.md b/quickstart/201-function-app-key-vault-ref/TestRecord.md index 42e8047f6..6e4a55edc 100644 --- a/quickstart/201-function-app-key-vault-ref/TestRecord.md +++ b/quickstart/201-function-app-key-vault-ref/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:28 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 02:27 UTC Success: true diff --git a/quickstart/201-function-app/TestRecord.md b/quickstart/201-function-app/TestRecord.md index 66b3a25fe..d0ea84145 100644 --- a/quickstart/201-function-app/TestRecord.md +++ b/quickstart/201-function-app/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:27 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 02:29 UTC Success: true diff --git a/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md b/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md index 0943f42ca..08aae16c7 100644 --- a/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md +++ b/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:31 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 02:23 UTC Success: true diff --git a/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md b/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md index a9e8dc90d..1688a3d8f 100644 --- a/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md +++ b/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:48 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 02:33 UTC Success: true diff --git a/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md b/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md index b91cbacc5..0c830a640 100644 --- a/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md +++ b/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md @@ -1,3 +1,22 @@ +## 04 Dec 23 02:31 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 ++ provider registry.terraform.io/hashicorp/time v0.9.1 + +### Error + + + +--- + ## 26 Nov 23 02:12 UTC Success: true diff --git a/quickstart/201-machine-learning-moderately-secure/TestRecord.md b/quickstart/201-machine-learning-moderately-secure/TestRecord.md index 5b20deb5f..6bd2fb1e6 100644 --- a/quickstart/201-machine-learning-moderately-secure/TestRecord.md +++ b/quickstart/201-machine-learning-moderately-secure/TestRecord.md @@ -1,3 +1,21 @@ +## 04 Dec 23 02:22 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 ++ provider registry.terraform.io/hashicorp/random v3.5.1 ++ provider registry.terraform.io/orobix/azureml v0.0.5 + +### Error + + + +--- + ## 26 Nov 23 02:03 UTC Success: false diff --git a/quickstart/201-mysql-fs-db/TestRecord.md b/quickstart/201-mysql-fs-db/TestRecord.md index 1d5628eaf..03d3d03ec 100644 --- a/quickstart/201-mysql-fs-db/TestRecord.md +++ b/quickstart/201-mysql-fs-db/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:37 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 02:03 UTC Success: true diff --git a/quickstart/201-postgresql-fs-db/TestRecord.md b/quickstart/201-postgresql-fs-db/TestRecord.md index 7da5affc6..f07014f4b 100644 --- a/quickstart/201-postgresql-fs-db/TestRecord.md +++ b/quickstart/201-postgresql-fs-db/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:29 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 01:46 UTC Success: true diff --git a/quickstart/201-synapse-secure/TestRecord.md b/quickstart/201-synapse-secure/TestRecord.md index 4299ec326..09c81432e 100644 --- a/quickstart/201-synapse-secure/TestRecord.md +++ b/quickstart/201-synapse-secure/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:19 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.32.0 ++ provider registry.terraform.io/hashicorp/http v3.4.0 + +### Error + + + +--- + ## 26 Nov 23 01:36 UTC Success: false diff --git a/quickstart/201-vm-disk-encryption-extension/TestRecord.md b/quickstart/201-vm-disk-encryption-extension/TestRecord.md index 5c6e2c726..76f0896f9 100644 --- a/quickstart/201-vm-disk-encryption-extension/TestRecord.md +++ b/quickstart/201-vm-disk-encryption-extension/TestRecord.md @@ -1,3 +1,22 @@ +## 04 Dec 23 02:26 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/local v2.3.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 26 Nov 23 01:36 UTC Success: true diff --git a/quickstart/201-vmss-disk-encryption-extension/TestRecord.md b/quickstart/201-vmss-disk-encryption-extension/TestRecord.md index ccc5cb3f9..c2c37d45c 100644 --- a/quickstart/201-vmss-disk-encryption-extension/TestRecord.md +++ b/quickstart/201-vmss-disk-encryption-extension/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:30 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 01:28 UTC Success: true diff --git a/quickstart/201-vmss-jumpbox/TestRecord.md b/quickstart/201-vmss-jumpbox/TestRecord.md index 242dcd127..966e9d85a 100644 --- a/quickstart/201-vmss-jumpbox/TestRecord.md +++ b/quickstart/201-vmss-jumpbox/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:22 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 01:20 UTC Success: true diff --git a/quickstart/201-web-app-docker-acr/TestRecord.md b/quickstart/201-web-app-docker-acr/TestRecord.md index 2c98467d3..d6fc62eca 100644 --- a/quickstart/201-web-app-docker-acr/TestRecord.md +++ b/quickstart/201-web-app-docker-acr/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:20 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 01:09 UTC Success: true diff --git a/quickstart/201-web-app-postgres-keyvault/TestRecord.md b/quickstart/201-web-app-postgres-keyvault/TestRecord.md index 93e9619a0..aff2375c0 100644 --- a/quickstart/201-web-app-postgres-keyvault/TestRecord.md +++ b/quickstart/201-web-app-postgres-keyvault/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:24 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.83.0 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 01:07 UTC Success: true diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md b/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md index 7d7d6ad56..41828be47 100644 --- a/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md @@ -1,3 +1,35 @@ +## 04 Dec 23 02:18 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... + +Initializing provider plugins... +- Finding hashicorp/azurerm versions matching "2.78.0"... +- Finding latest version of telemaco019/azureml... +- Finding latest version of hashicorp/random... +- Installing hashicorp/azurerm v2.78.0... +- Installed hashicorp/azurerm v2.78.0 (signed by HashiCorp) +- Installing telemaco019/azureml v0.0.5... +- Installing hashicorp/random v3.5.1... +- Installed hashicorp/random v3.5.1 (signed by HashiCorp) + +Error: Failed to install provider + +Error while installing telemaco019/azureml v0.0.5: checksum list has no +SHA-256 hash for +"https://github.com/orobix/terraform-provider-azureml/releases/download/v0.0.5/terraform-provider-azureml_0.0.5_linux_amd64.zip" + + +--- + ## 26 Nov 23 01:03 UTC Success: false diff --git a/quickstart/301-aks-enterprise/TestRecord.md b/quickstart/301-aks-enterprise/TestRecord.md index 460f7e185..7ff8a1497 100644 --- a/quickstart/301-aks-enterprise/TestRecord.md +++ b/quickstart/301-aks-enterprise/TestRecord.md @@ -1,3 +1,296 @@ +## 04 Dec 23 02:17 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... +Terraform encountered problems during initialisation, including problems +with the configuration, described below. + +The Terraform configuration must be valid before initialization so that +Terraform can determine which modules and providers need to be installed. + +Warning: Quoted references are deprecated + + on aks.tf line 6, in resource "azurerm_kubernetes_cluster" "default": + 6: depends_on = ["azurerm_role_assignment.default"] + +In this context, references are expected literally rather than in quotes. +Terraform 0.11 and earlier required quotes, but quoted references are now +deprecated and will be removed in a future version of Terraform. Remove the +quotes surrounding this reference to silence this warning. + +(and 5 more similar warnings elsewhere) + + +Error: Invalid quoted type constraints + + on variables.tf line 3, in variable "name": + 3: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 3, in variable "name": + 3: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 9, in variable "environment": + 9: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 9, in variable "environment": + 9: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 17, in variable "location": + 17: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 17, in variable "location": + 17: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 25, in variable "node_count": + 25: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 25, in variable "node_count": + 25: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 31, in variable "node_type": + 31: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 31, in variable "node_type": + 31: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 37, in variable "node_os": + 37: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 37, in variable "node_os": + 37: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 43, in variable "dns_prefix": + 43: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 43, in variable "dns_prefix": + 43: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 51, in variable "vnet_address_space": + 51: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 51, in variable "vnet_address_space": + 51: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 57, in variable "vnet_aks_subnet_space": + 57: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 57, in variable "vnet_aks_subnet_space": + 57: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 63, in variable "vnet_ingress_subnet_space": + 63: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 63, in variable "vnet_ingress_subnet_space": + 63: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 69, in variable "vnet_gateway_subnet_space": + 69: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 69, in variable "vnet_gateway_subnet_space": + 69: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 75, in variable "ingress_load_balancer_ip": + 75: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 75, in variable "ingress_load_balancer_ip": + 75: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 82, in variable "gateway_instance_count": + 82: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 82, in variable "gateway_instance_count": + 82: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +--- + ## 26 Nov 23 01:03 UTC Success: false diff --git a/quickstart/301-aks-private-cluster/TestRecord.md b/quickstart/301-aks-private-cluster/TestRecord.md index 7cf448d64..3e2b7bc34 100644 --- a/quickstart/301-aks-private-cluster/TestRecord.md +++ b/quickstart/301-aks-private-cluster/TestRecord.md @@ -1,3 +1,20 @@ +## 04 Dec 23 02:17 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/null v3.2.2 + +### Error + + + +--- + ## 26 Nov 23 01:03 UTC Success: false diff --git a/quickstart/301-hub-spoke/TestRecord.md b/quickstart/301-hub-spoke/TestRecord.md index dde41a542..5af826a8b 100644 --- a/quickstart/301-hub-spoke/TestRecord.md +++ b/quickstart/301-hub-spoke/TestRecord.md @@ -1,3 +1,19 @@ +## 04 Dec 23 02:17 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 + +### Error + + + +--- + ## 26 Nov 23 01:03 UTC Success: false diff --git a/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md b/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md index 7f10482ec..96047307b 100644 --- a/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md +++ b/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md @@ -1,3 +1,35 @@ +## 04 Dec 23 02:17 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... + +Initializing provider plugins... +- Finding latest version of telemaco019/azureml... +- Finding hashicorp/azurerm versions matching "2.78.0"... +- Finding latest version of hashicorp/random... +- Installing telemaco019/azureml v0.0.5... +- Installing hashicorp/azurerm v2.78.0... +- Installed hashicorp/azurerm v2.78.0 (signed by HashiCorp) +- Installing hashicorp/random v3.5.1... +- Installed hashicorp/random v3.5.1 (signed by HashiCorp) + +Error: Failed to install provider + +Error while installing telemaco019/azureml v0.0.5: checksum list has no +SHA-256 hash for +"https://github.com/orobix/terraform-provider-azureml/releases/download/v0.0.5/terraform-provider-azureml_0.0.5_linux_amd64.zip" + + +--- + ## 26 Nov 23 01:03 UTC Success: false diff --git a/quickstart/301-service-fabric-apim/TestRecord.md b/quickstart/301-service-fabric-apim/TestRecord.md index 06155ba3f..93b35e870 100644 --- a/quickstart/301-service-fabric-apim/TestRecord.md +++ b/quickstart/301-service-fabric-apim/TestRecord.md @@ -1,3 +1,21 @@ +## 04 Dec 23 02:17 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.46.0 ++ provider registry.terraform.io/hashicorp/azurerm v1.36.1 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 01:03 UTC Success: false diff --git a/quickstart/301-service-fabric/TestRecord.md b/quickstart/301-service-fabric/TestRecord.md index 44ec6e5da..270454129 100644 --- a/quickstart/301-service-fabric/TestRecord.md +++ b/quickstart/301-service-fabric/TestRecord.md @@ -1,3 +1,21 @@ +## 04 Dec 23 02:17 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.46.0 ++ provider registry.terraform.io/hashicorp/azurerm v1.36.1 ++ provider registry.terraform.io/hashicorp/random v3.5.1 + +### Error + + + +--- + ## 26 Nov 23 01:03 UTC Success: false diff --git a/quickstart/template/TestRecord.md b/quickstart/template/TestRecord.md index 365c39552..717d2551b 100644 --- a/quickstart/template/TestRecord.md +++ b/quickstart/template/TestRecord.md @@ -1,3 +1,19 @@ +## 04 Dec 23 02:17 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.56.0 + +### Error + + + +--- + ## 26 Nov 23 01:03 UTC Success: false From 81dea1b7f337e54e0d7f261f92bd8369a2ad10ef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 10 Dec 2023 02:15:27 +0000 Subject: [PATCH 41/64] Update TestRecord --- .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-application-gateway/TestRecord.md | 17 + .../101-attestation-provider/TestRecord.md | 18 ++ .../TestRecord.md | 18 ++ .../101-azapi-lab-services/TestRecord.md | 17 + .../101-azfw-with-fwpolicy/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-azure-cognitive-search/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../101-azure-virtual-desktop/TestRecord.md | 18 ++ .../TestRecord.md | 17 + .../101-cdn-with-custom-origin/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-aad-rbac/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-autoscale/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-free-tier/TestRecord.md | 17 + .../101-cosmos-db-manualscale/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-databricks-cmk-dbfs/TestRecord.md | 17 + .../101-ddos-protection-plan/TestRecord.md | 17 + quickstart/101-devtest-labs/TestRecord.md | 17 + quickstart/101-dns_zone/TestRecord.md | 17 + .../101-firewall-standard/TestRecord.md | 17 + .../101-front-door-classic/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../TestRecord.md | 17 + quickstart/101-key-vault-key/TestRecord.md | 17 + quickstart/101-machine-learning/TestRecord.md | 17 + quickstart/101-managed-instance/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/101-notification-hub/TestRecord.md | 17 + quickstart/101-resource-group/TestRecord.md | 17 + quickstart/101-sql-database/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-storage-static-website/TestRecord.md | 17 + .../101-stream-analytics-job/TestRecord.md | 17 + quickstart/101-synapse/TestRecord.md | 18 ++ .../TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 17 + quickstart/101-vm-auto-shutdown/TestRecord.md | 17 + quickstart/101-vm-cluster-linux/TestRecord.md | 18 ++ .../101-vm-cluster-windows/TestRecord.md | 17 + .../101-vm-with-infrastructure/TestRecord.md | 18 ++ .../101-web-app-linux-container/TestRecord.md | 17 + .../101-web-app-linux-java/TestRecord.md | 17 + .../101-web-app-windows-dotnet/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/201-aks-acr-identity/TestRecord.md | 17 + quickstart/201-aks-helm/TestRecord.md | 18 ++ .../201-aks-log-analytics/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../201-azfw-multi-addresses/TestRecord.md | 17 + .../201-azfw-with-avzones/TestRecord.md | 17 + .../201-azfw-with-ipgroups/TestRecord.md | 18 ++ .../201-azfw-with-secure-hub/TestRecord.md | 17 + .../201-azure-pipelines-ci-cd/TestRecord.md | 15 + .../201-confidential-os-disk/TestRecord.md | 17 + quickstart/201-confidential-vm/TestRecord.md | 18 ++ .../201-confidential-vmss/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/201-function-app/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 18 ++ quickstart/201-mysql-fs-db/TestRecord.md | 17 + quickstart/201-postgresql-fs-db/TestRecord.md | 17 + quickstart/201-synapse-secure/TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 17 + quickstart/201-vmss-jumpbox/TestRecord.md | 17 + .../201-web-app-docker-acr/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 32 ++ quickstart/301-aks-enterprise/TestRecord.md | 293 ++++++++++++++++++ .../301-aks-private-cluster/TestRecord.md | 17 + quickstart/301-hub-spoke/TestRecord.md | 16 + .../TestRecord.md | 32 ++ .../301-service-fabric-apim/TestRecord.md | 18 ++ quickstart/301-service-fabric/TestRecord.md | 18 ++ quickstart/template/TestRecord.md | 16 + 86 files changed, 1785 insertions(+) diff --git a/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md b/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md index 7236fd65d..41c661d67 100644 --- a/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md +++ b/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:25 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:19 UTC Success: true diff --git a/quickstart/101-analysis-services-create/TestRecord.md b/quickstart/101-analysis-services-create/TestRecord.md index 80b70ca54..e226686b7 100644 --- a/quickstart/101-analysis-services-create/TestRecord.md +++ b/quickstart/101-analysis-services-create/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:11 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:17 UTC Success: true diff --git a/quickstart/101-application-gateway/TestRecord.md b/quickstart/101-application-gateway/TestRecord.md index 781f2b842..4a206ce13 100644 --- a/quickstart/101-application-gateway/TestRecord.md +++ b/quickstart/101-application-gateway/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:24 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:37 UTC Success: true diff --git a/quickstart/101-attestation-provider/TestRecord.md b/quickstart/101-attestation-provider/TestRecord.md index 62046350b..aae9db575 100644 --- a/quickstart/101-attestation-provider/TestRecord.md +++ b/quickstart/101-attestation-provider/TestRecord.md @@ -1,3 +1,21 @@ +## 10 Dec 23 01:06 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 04 Dec 23 03:14 UTC Success: true diff --git a/quickstart/101-azapi-eventhub-network-rules/TestRecord.md b/quickstart/101-azapi-eventhub-network-rules/TestRecord.md index f5af23ea7..df8a6b1ec 100644 --- a/quickstart/101-azapi-eventhub-network-rules/TestRecord.md +++ b/quickstart/101-azapi-eventhub-network-rules/TestRecord.md @@ -1,3 +1,21 @@ +## 10 Dec 23 01:09 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v0.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 ++ provider registry.terraform.io/hashicorp/random v3.1.2 + +### Error + + + +--- + ## 04 Dec 23 03:18 UTC Success: true diff --git a/quickstart/101-azapi-lab-services/TestRecord.md b/quickstart/101-azapi-lab-services/TestRecord.md index 0c0ba1b56..62c4457e3 100644 --- a/quickstart/101-azapi-lab-services/TestRecord.md +++ b/quickstart/101-azapi-lab-services/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:06 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v0.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 + +### Error + + + +--- + ## 04 Dec 23 03:14 UTC Success: false diff --git a/quickstart/101-azfw-with-fwpolicy/TestRecord.md b/quickstart/101-azfw-with-fwpolicy/TestRecord.md index 58cf3e68b..24ed70c70 100644 --- a/quickstart/101-azfw-with-fwpolicy/TestRecord.md +++ b/quickstart/101-azfw-with-fwpolicy/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:25 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:38 UTC Success: true diff --git a/quickstart/101-azure-api-management-create/TestRecord.md b/quickstart/101-azure-api-management-create/TestRecord.md index 33a5c38c5..335459a40 100644 --- a/quickstart/101-azure-api-management-create/TestRecord.md +++ b/quickstart/101-azure-api-management-create/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:29 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:38 UTC Success: true diff --git a/quickstart/101-azure-cognitive-search/TestRecord.md b/quickstart/101-azure-cognitive-search/TestRecord.md index 84e59c2e6..e3324a070 100644 --- a/quickstart/101-azure-cognitive-search/TestRecord.md +++ b/quickstart/101-azure-cognitive-search/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:04 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:12 UTC Success: true diff --git a/quickstart/101-azure-virtual-desktop-anf/TestRecord.md b/quickstart/101-azure-virtual-desktop-anf/TestRecord.md index a7e8cff15..a96c5c853 100644 --- a/quickstart/101-azure-virtual-desktop-anf/TestRecord.md +++ b/quickstart/101-azure-virtual-desktop-anf/TestRecord.md @@ -1,3 +1,21 @@ +## 10 Dec 23 01:03 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.46.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:11 UTC Success: false diff --git a/quickstart/101-azure-virtual-desktop/TestRecord.md b/quickstart/101-azure-virtual-desktop/TestRecord.md index f9774578b..bdd95eb16 100644 --- a/quickstart/101-azure-virtual-desktop/TestRecord.md +++ b/quickstart/101-azure-virtual-desktop/TestRecord.md @@ -1,3 +1,21 @@ +## 10 Dec 23 01:04 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.46.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:11 UTC Success: false diff --git a/quickstart/101-batch-account-with-storage/TestRecord.md b/quickstart/101-batch-account-with-storage/TestRecord.md index 7da4e3be9..1ebbb6153 100644 --- a/quickstart/101-batch-account-with-storage/TestRecord.md +++ b/quickstart/101-batch-account-with-storage/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:05 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:13 UTC Success: true diff --git a/quickstart/101-cdn-with-custom-origin/TestRecord.md b/quickstart/101-cdn-with-custom-origin/TestRecord.md index 169e90833..49b683616 100644 --- a/quickstart/101-cdn-with-custom-origin/TestRecord.md +++ b/quickstart/101-cdn-with-custom-origin/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:10 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:17 UTC Success: true diff --git a/quickstart/101-cognitive-services-account/TestRecord.md b/quickstart/101-cognitive-services-account/TestRecord.md index f57dde2a1..c5608ce23 100644 --- a/quickstart/101-cognitive-services-account/TestRecord.md +++ b/quickstart/101-cognitive-services-account/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:03 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:11 UTC Success: true diff --git a/quickstart/101-cosmos-db-aad-rbac/TestRecord.md b/quickstart/101-cosmos-db-aad-rbac/TestRecord.md index fbe36d3b0..64159accf 100644 --- a/quickstart/101-cosmos-db-aad-rbac/TestRecord.md +++ b/quickstart/101-cosmos-db-aad-rbac/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:15 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:22 UTC Success: true diff --git a/quickstart/101-cosmos-db-analyticalstore/TestRecord.md b/quickstart/101-cosmos-db-analyticalstore/TestRecord.md index 1d3810b45..8bec40ece 100644 --- a/quickstart/101-cosmos-db-analyticalstore/TestRecord.md +++ b/quickstart/101-cosmos-db-analyticalstore/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:51 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:22 UTC Success: true diff --git a/quickstart/101-cosmos-db-autoscale/TestRecord.md b/quickstart/101-cosmos-db-autoscale/TestRecord.md index 71a2512c6..3d6c30cf9 100644 --- a/quickstart/101-cosmos-db-autoscale/TestRecord.md +++ b/quickstart/101-cosmos-db-autoscale/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:08 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:14 UTC Success: true diff --git a/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md b/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md index 7b93c14b3..221140df7 100644 --- a/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md +++ b/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:05 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:11 UTC Success: true diff --git a/quickstart/101-cosmos-db-free-tier/TestRecord.md b/quickstart/101-cosmos-db-free-tier/TestRecord.md index 4829336e8..a56f35d78 100644 --- a/quickstart/101-cosmos-db-free-tier/TestRecord.md +++ b/quickstart/101-cosmos-db-free-tier/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:03 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:10 UTC Success: true diff --git a/quickstart/101-cosmos-db-manualscale/TestRecord.md b/quickstart/101-cosmos-db-manualscale/TestRecord.md index adfd0a184..1374ebf13 100644 --- a/quickstart/101-cosmos-db-manualscale/TestRecord.md +++ b/quickstart/101-cosmos-db-manualscale/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:02 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:08 UTC Success: true diff --git a/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md b/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md index 58f8a5980..adbff2e1c 100644 --- a/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md +++ b/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:03 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:10 UTC Success: true diff --git a/quickstart/101-databricks-cmk-dbfs/TestRecord.md b/quickstart/101-databricks-cmk-dbfs/TestRecord.md index e5708ad11..5115cc338 100644 --- a/quickstart/101-databricks-cmk-dbfs/TestRecord.md +++ b/quickstart/101-databricks-cmk-dbfs/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:56 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:01 UTC Success: true diff --git a/quickstart/101-ddos-protection-plan/TestRecord.md b/quickstart/101-ddos-protection-plan/TestRecord.md index 50ba6544a..760bb85ea 100644 --- a/quickstart/101-ddos-protection-plan/TestRecord.md +++ b/quickstart/101-ddos-protection-plan/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:48 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:55 UTC Success: true diff --git a/quickstart/101-devtest-labs/TestRecord.md b/quickstart/101-devtest-labs/TestRecord.md index 9667fd68e..e2f56b9af 100644 --- a/quickstart/101-devtest-labs/TestRecord.md +++ b/quickstart/101-devtest-labs/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:05 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:12 UTC Success: true diff --git a/quickstart/101-dns_zone/TestRecord.md b/quickstart/101-dns_zone/TestRecord.md index a4823ec77..e6e03b1cd 100644 --- a/quickstart/101-dns_zone/TestRecord.md +++ b/quickstart/101-dns_zone/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:47 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:54 UTC Success: true diff --git a/quickstart/101-firewall-standard/TestRecord.md b/quickstart/101-firewall-standard/TestRecord.md index 2cdcabbe1..3f8b25c95 100644 --- a/quickstart/101-firewall-standard/TestRecord.md +++ b/quickstart/101-firewall-standard/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:14 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:13 UTC Success: true diff --git a/quickstart/101-front-door-classic/TestRecord.md b/quickstart/101-front-door-classic/TestRecord.md index 55d8bd887..0487499a8 100644 --- a/quickstart/101-front-door-classic/TestRecord.md +++ b/quickstart/101-front-door-classic/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:49 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:55 UTC Success: true diff --git a/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md b/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md index 27b78d929..a09b8bd82 100644 --- a/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md +++ b/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md @@ -1,3 +1,21 @@ +## 10 Dec 23 00:49 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 04 Dec 23 02:57 UTC Success: true diff --git a/quickstart/101-front-door-standard-premium/TestRecord.md b/quickstart/101-front-door-standard-premium/TestRecord.md index 26128c03e..611794703 100644 --- a/quickstart/101-front-door-standard-premium/TestRecord.md +++ b/quickstart/101-front-door-standard-premium/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:46 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:53 UTC Success: true diff --git a/quickstart/101-key-vault-key/TestRecord.md b/quickstart/101-key-vault-key/TestRecord.md index 153f16623..908d1be43 100644 --- a/quickstart/101-key-vault-key/TestRecord.md +++ b/quickstart/101-key-vault-key/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:47 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:53 UTC Success: true diff --git a/quickstart/101-machine-learning/TestRecord.md b/quickstart/101-machine-learning/TestRecord.md index a82ba1128..55aa4266e 100644 --- a/quickstart/101-machine-learning/TestRecord.md +++ b/quickstart/101-machine-learning/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:50 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:58 UTC Success: true diff --git a/quickstart/101-managed-instance/TestRecord.md b/quickstart/101-managed-instance/TestRecord.md index ff5816e3e..69651c4ee 100644 --- a/quickstart/101-managed-instance/TestRecord.md +++ b/quickstart/101-managed-instance/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 02:15 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 04:23 UTC Success: true diff --git a/quickstart/101-managed-lustre-create-filesystem/TestRecord.md b/quickstart/101-managed-lustre-create-filesystem/TestRecord.md index 5b3e6aff3..77cc01f71 100644 --- a/quickstart/101-managed-lustre-create-filesystem/TestRecord.md +++ b/quickstart/101-managed-lustre-create-filesystem/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:01 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:08 UTC Success: true diff --git a/quickstart/101-notification-hub/TestRecord.md b/quickstart/101-notification-hub/TestRecord.md index 52236b010..e6505d177 100644 --- a/quickstart/101-notification-hub/TestRecord.md +++ b/quickstart/101-notification-hub/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:45 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:52 UTC Success: true diff --git a/quickstart/101-resource-group/TestRecord.md b/quickstart/101-resource-group/TestRecord.md index eeff65a56..3cec66274 100644 --- a/quickstart/101-resource-group/TestRecord.md +++ b/quickstart/101-resource-group/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:40 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:47 UTC Success: true diff --git a/quickstart/101-sql-database/TestRecord.md b/quickstart/101-sql-database/TestRecord.md index 2624a4c69..b7d6f6c3c 100644 --- a/quickstart/101-sql-database/TestRecord.md +++ b/quickstart/101-sql-database/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:44 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:52 UTC Success: true diff --git a/quickstart/101-sql-security-alert-policy/TestRecord.md b/quickstart/101-sql-security-alert-policy/TestRecord.md index 119ed6b70..a34852486 100644 --- a/quickstart/101-sql-security-alert-policy/TestRecord.md +++ b/quickstart/101-sql-security-alert-policy/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:42 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:49 UTC Success: true diff --git a/quickstart/101-storage-account-with-static-website/TestRecord.md b/quickstart/101-storage-account-with-static-website/TestRecord.md index 3a1239e4d..776920fca 100644 --- a/quickstart/101-storage-account-with-static-website/TestRecord.md +++ b/quickstart/101-storage-account-with-static-website/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:39 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:47 UTC Success: true diff --git a/quickstart/101-storage-static-website/TestRecord.md b/quickstart/101-storage-static-website/TestRecord.md index 040bead85..ad833cddc 100644 --- a/quickstart/101-storage-static-website/TestRecord.md +++ b/quickstart/101-storage-static-website/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:40 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 04 Dec 23 02:46 UTC Success: true diff --git a/quickstart/101-stream-analytics-job/TestRecord.md b/quickstart/101-stream-analytics-job/TestRecord.md index 6df0831c0..a7116354c 100644 --- a/quickstart/101-stream-analytics-job/TestRecord.md +++ b/quickstart/101-stream-analytics-job/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:38 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:43 UTC Success: true diff --git a/quickstart/101-synapse/TestRecord.md b/quickstart/101-synapse/TestRecord.md index 13b8c5baa..14f8ec8c8 100644 --- a/quickstart/101-synapse/TestRecord.md +++ b/quickstart/101-synapse/TestRecord.md @@ -1,3 +1,21 @@ +## 10 Dec 23 00:46 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/http v3.4.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:51 UTC Success: true diff --git a/quickstart/101-traffic-manager-external-endpoint/TestRecord.md b/quickstart/101-traffic-manager-external-endpoint/TestRecord.md index 49bf19fc5..3f25261b6 100644 --- a/quickstart/101-traffic-manager-external-endpoint/TestRecord.md +++ b/quickstart/101-traffic-manager-external-endpoint/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:37 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:43 UTC Success: true diff --git a/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md b/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md index 8d73d3ff3..9cca44e07 100644 --- a/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md +++ b/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md @@ -1,3 +1,22 @@ +## 10 Dec 23 00:41 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.56.0 ++ provider registry.terraform.io/hashicorp/null v3.2.2 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/time v0.10.0 + +### Error + + + +--- + ## 04 Dec 23 02:25 UTC Success: true diff --git a/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md b/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md index 494fe2a7e..29d8c40fa 100644 --- a/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md +++ b/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:39 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:23 UTC Success: true diff --git a/quickstart/101-vm-auto-shutdown/TestRecord.md b/quickstart/101-vm-auto-shutdown/TestRecord.md index ae148d963..ca90fdbdb 100644 --- a/quickstart/101-vm-auto-shutdown/TestRecord.md +++ b/quickstart/101-vm-auto-shutdown/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:36 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:22 UTC Success: true diff --git a/quickstart/101-vm-cluster-linux/TestRecord.md b/quickstart/101-vm-cluster-linux/TestRecord.md index a3ac271de..d430b357e 100644 --- a/quickstart/101-vm-cluster-linux/TestRecord.md +++ b/quickstart/101-vm-cluster-linux/TestRecord.md @@ -1,3 +1,21 @@ +## 10 Dec 23 00:38 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:22 UTC Success: true diff --git a/quickstart/101-vm-cluster-windows/TestRecord.md b/quickstart/101-vm-cluster-windows/TestRecord.md index b0d963083..0a500802d 100644 --- a/quickstart/101-vm-cluster-windows/TestRecord.md +++ b/quickstart/101-vm-cluster-windows/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:37 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:47 UTC Success: true diff --git a/quickstart/101-vm-with-infrastructure/TestRecord.md b/quickstart/101-vm-with-infrastructure/TestRecord.md index 3d565b283..c15b25b8c 100644 --- a/quickstart/101-vm-with-infrastructure/TestRecord.md +++ b/quickstart/101-vm-with-infrastructure/TestRecord.md @@ -1,3 +1,21 @@ +## 10 Dec 23 00:32 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:46 UTC Success: true diff --git a/quickstart/101-web-app-linux-container/TestRecord.md b/quickstart/101-web-app-linux-container/TestRecord.md index d3c67bc34..9c5a575ed 100644 --- a/quickstart/101-web-app-linux-container/TestRecord.md +++ b/quickstart/101-web-app-linux-container/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:29 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:43 UTC Success: true diff --git a/quickstart/101-web-app-linux-java/TestRecord.md b/quickstart/101-web-app-linux-java/TestRecord.md index 16bbb9fb6..772dd211c 100644 --- a/quickstart/101-web-app-linux-java/TestRecord.md +++ b/quickstart/101-web-app-linux-java/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:28 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:42 UTC Success: true diff --git a/quickstart/101-web-app-windows-dotnet/TestRecord.md b/quickstart/101-web-app-windows-dotnet/TestRecord.md index ff878ef25..2e777890d 100644 --- a/quickstart/101-web-app-windows-dotnet/TestRecord.md +++ b/quickstart/101-web-app-windows-dotnet/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:26 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:41 UTC Success: true diff --git a/quickstart/101-windows-vm-with-iis-server/TestRecord.md b/quickstart/101-windows-vm-with-iis-server/TestRecord.md index afd42bfc2..9a720d437 100644 --- a/quickstart/101-windows-vm-with-iis-server/TestRecord.md +++ b/quickstart/101-windows-vm-with-iis-server/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:37 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:53 UTC Success: true diff --git a/quickstart/201-aks-acr-identity/TestRecord.md b/quickstart/201-aks-acr-identity/TestRecord.md index cefeaf264..823b23845 100644 --- a/quickstart/201-aks-acr-identity/TestRecord.md +++ b/quickstart/201-aks-acr-identity/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:33 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:40 UTC Success: true diff --git a/quickstart/201-aks-helm/TestRecord.md b/quickstart/201-aks-helm/TestRecord.md index 3ad7cc140..add320c05 100644 --- a/quickstart/201-aks-helm/TestRecord.md +++ b/quickstart/201-aks-helm/TestRecord.md @@ -1,3 +1,21 @@ +## 10 Dec 23 00:33 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/helm v2.9.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:41 UTC Success: true diff --git a/quickstart/201-aks-log-analytics/TestRecord.md b/quickstart/201-aks-log-analytics/TestRecord.md index 6cc62ca9d..8f1cf3461 100644 --- a/quickstart/201-aks-log-analytics/TestRecord.md +++ b/quickstart/201-aks-log-analytics/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:34 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 04 Dec 23 02:41 UTC Success: true diff --git a/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md b/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md index 5e56173bb..3531ebf37 100644 --- a/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md +++ b/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md @@ -1,3 +1,21 @@ +## 10 Dec 23 00:32 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/kubernetes v2.24.0 ++ provider registry.terraform.io/hashicorp/random v3.3.2 + +### Error + + + +--- + ## 04 Dec 23 02:40 UTC Success: true diff --git a/quickstart/201-azfw-multi-addresses/TestRecord.md b/quickstart/201-azfw-multi-addresses/TestRecord.md index 84d87cff6..ffd40d261 100644 --- a/quickstart/201-azfw-multi-addresses/TestRecord.md +++ b/quickstart/201-azfw-multi-addresses/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:43 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:49 UTC Success: true diff --git a/quickstart/201-azfw-with-avzones/TestRecord.md b/quickstart/201-azfw-with-avzones/TestRecord.md index bc7b3b042..ff16baf4d 100644 --- a/quickstart/201-azfw-with-avzones/TestRecord.md +++ b/quickstart/201-azfw-with-avzones/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 00:43 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:50 UTC Success: true diff --git a/quickstart/201-azfw-with-ipgroups/TestRecord.md b/quickstart/201-azfw-with-ipgroups/TestRecord.md index 654092526..f632f68f7 100644 --- a/quickstart/201-azfw-with-ipgroups/TestRecord.md +++ b/quickstart/201-azfw-with-ipgroups/TestRecord.md @@ -1,3 +1,21 @@ +## 10 Dec 23 00:40 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:47 UTC Success: true diff --git a/quickstart/201-azfw-with-secure-hub/TestRecord.md b/quickstart/201-azfw-with-secure-hub/TestRecord.md index c90702e11..0316597b7 100644 --- a/quickstart/201-azfw-with-secure-hub/TestRecord.md +++ b/quickstart/201-azfw-with-secure-hub/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:17 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 03:23 UTC Success: true diff --git a/quickstart/201-azure-pipelines-ci-cd/TestRecord.md b/quickstart/201-azure-pipelines-ci-cd/TestRecord.md index efab2bd95..a0fbd3bef 100644 --- a/quickstart/201-azure-pipelines-ci-cd/TestRecord.md +++ b/quickstart/201-azure-pipelines-ci-cd/TestRecord.md @@ -1,3 +1,18 @@ +## 10 Dec 23 01:27 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 + +### Error + + + +--- + ## 04 Dec 23 02:28 UTC Success: true diff --git a/quickstart/201-confidential-os-disk/TestRecord.md b/quickstart/201-confidential-os-disk/TestRecord.md index f49eab027..48551ccc9 100644 --- a/quickstart/201-confidential-os-disk/TestRecord.md +++ b/quickstart/201-confidential-os-disk/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:28 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:29 UTC Success: true diff --git a/quickstart/201-confidential-vm/TestRecord.md b/quickstart/201-confidential-vm/TestRecord.md index 591ffd1c7..db2caa370 100644 --- a/quickstart/201-confidential-vm/TestRecord.md +++ b/quickstart/201-confidential-vm/TestRecord.md @@ -1,3 +1,21 @@ +## 10 Dec 23 01:32 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 04 Dec 23 02:32 UTC Success: true diff --git a/quickstart/201-confidential-vmss/TestRecord.md b/quickstart/201-confidential-vmss/TestRecord.md index 7bb9a705f..9c7b7c48a 100644 --- a/quickstart/201-confidential-vmss/TestRecord.md +++ b/quickstart/201-confidential-vmss/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:30 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:31 UTC Success: true diff --git a/quickstart/201-function-app-key-vault-ref/TestRecord.md b/quickstart/201-function-app-key-vault-ref/TestRecord.md index 6e4a55edc..aa51b0399 100644 --- a/quickstart/201-function-app-key-vault-ref/TestRecord.md +++ b/quickstart/201-function-app-key-vault-ref/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:27 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:28 UTC Success: true diff --git a/quickstart/201-function-app/TestRecord.md b/quickstart/201-function-app/TestRecord.md index d0ea84145..3fbd450d0 100644 --- a/quickstart/201-function-app/TestRecord.md +++ b/quickstart/201-function-app/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:26 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:27 UTC Success: true diff --git a/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md b/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md index 08aae16c7..7f1250b25 100644 --- a/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md +++ b/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:30 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:31 UTC Success: true diff --git a/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md b/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md index 1688a3d8f..8748df3e1 100644 --- a/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md +++ b/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:39 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:48 UTC Success: true diff --git a/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md b/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md index 0c830a640..d5cded72b 100644 --- a/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md +++ b/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md @@ -1,3 +1,22 @@ +## 10 Dec 23 01:26 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/time v0.9.1 + +### Error + + + +--- + ## 04 Dec 23 02:31 UTC Success: true diff --git a/quickstart/201-machine-learning-moderately-secure/TestRecord.md b/quickstart/201-machine-learning-moderately-secure/TestRecord.md index 6bd2fb1e6..c3d03f2d6 100644 --- a/quickstart/201-machine-learning-moderately-secure/TestRecord.md +++ b/quickstart/201-machine-learning-moderately-secure/TestRecord.md @@ -1,3 +1,21 @@ +## 10 Dec 23 01:17 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/orobix/azureml v0.0.5 + +### Error + + + +--- + ## 04 Dec 23 02:22 UTC Success: false diff --git a/quickstart/201-mysql-fs-db/TestRecord.md b/quickstart/201-mysql-fs-db/TestRecord.md index 03d3d03ec..ed883a27b 100644 --- a/quickstart/201-mysql-fs-db/TestRecord.md +++ b/quickstart/201-mysql-fs-db/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:34 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:37 UTC Success: true diff --git a/quickstart/201-postgresql-fs-db/TestRecord.md b/quickstart/201-postgresql-fs-db/TestRecord.md index f07014f4b..e92c1a734 100644 --- a/quickstart/201-postgresql-fs-db/TestRecord.md +++ b/quickstart/201-postgresql-fs-db/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:25 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:29 UTC Success: true diff --git a/quickstart/201-synapse-secure/TestRecord.md b/quickstart/201-synapse-secure/TestRecord.md index 09c81432e..a24b0c816 100644 --- a/quickstart/201-synapse-secure/TestRecord.md +++ b/quickstart/201-synapse-secure/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:16 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.32.0 ++ provider registry.terraform.io/hashicorp/http v3.4.0 + +### Error + + + +--- + ## 04 Dec 23 02:19 UTC Success: false diff --git a/quickstart/201-vm-disk-encryption-extension/TestRecord.md b/quickstart/201-vm-disk-encryption-extension/TestRecord.md index 76f0896f9..a3e5f0eeb 100644 --- a/quickstart/201-vm-disk-encryption-extension/TestRecord.md +++ b/quickstart/201-vm-disk-encryption-extension/TestRecord.md @@ -1,3 +1,22 @@ +## 10 Dec 23 01:23 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/local v2.3.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 04 Dec 23 02:26 UTC Success: true diff --git a/quickstart/201-vmss-disk-encryption-extension/TestRecord.md b/quickstart/201-vmss-disk-encryption-extension/TestRecord.md index c2c37d45c..58bb7c6dc 100644 --- a/quickstart/201-vmss-disk-encryption-extension/TestRecord.md +++ b/quickstart/201-vmss-disk-encryption-extension/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:22 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:30 UTC Success: true diff --git a/quickstart/201-vmss-jumpbox/TestRecord.md b/quickstart/201-vmss-jumpbox/TestRecord.md index 966e9d85a..061a3726d 100644 --- a/quickstart/201-vmss-jumpbox/TestRecord.md +++ b/quickstart/201-vmss-jumpbox/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:16 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:22 UTC Success: true diff --git a/quickstart/201-web-app-docker-acr/TestRecord.md b/quickstart/201-web-app-docker-acr/TestRecord.md index d6fc62eca..35961b2bf 100644 --- a/quickstart/201-web-app-docker-acr/TestRecord.md +++ b/quickstart/201-web-app-docker-acr/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:12 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:20 UTC Success: true diff --git a/quickstart/201-web-app-postgres-keyvault/TestRecord.md b/quickstart/201-web-app-postgres-keyvault/TestRecord.md index aff2375c0..fdaa4c5c3 100644 --- a/quickstart/201-web-app-postgres-keyvault/TestRecord.md +++ b/quickstart/201-web-app-postgres-keyvault/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:15 UTC + +Success: true + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.84.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:24 UTC Success: true diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md b/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md index 41828be47..db846a549 100644 --- a/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md @@ -1,3 +1,35 @@ +## 10 Dec 23 01:10 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... + +Initializing provider plugins... +- Finding latest version of telemaco019/azureml... +- Finding hashicorp/azurerm versions matching "2.78.0"... +- Finding latest version of hashicorp/random... +- Installing telemaco019/azureml v0.0.5... +- Installing hashicorp/azurerm v2.78.0... +- Installed hashicorp/azurerm v2.78.0 (signed by HashiCorp) +- Installing hashicorp/random v3.6.0... +- Installed hashicorp/random v3.6.0 (signed by HashiCorp) + +Error: Failed to install provider + +Error while installing telemaco019/azureml v0.0.5: checksum list has no +SHA-256 hash for +"https://github.com/orobix/terraform-provider-azureml/releases/download/v0.0.5/terraform-provider-azureml_0.0.5_linux_amd64.zip" + + +--- + ## 04 Dec 23 02:18 UTC Success: false diff --git a/quickstart/301-aks-enterprise/TestRecord.md b/quickstart/301-aks-enterprise/TestRecord.md index 7ff8a1497..e860bcdc2 100644 --- a/quickstart/301-aks-enterprise/TestRecord.md +++ b/quickstart/301-aks-enterprise/TestRecord.md @@ -1,3 +1,296 @@ +## 10 Dec 23 01:10 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... +Terraform encountered problems during initialisation, including problems +with the configuration, described below. + +The Terraform configuration must be valid before initialization so that +Terraform can determine which modules and providers need to be installed. + +Warning: Quoted references are deprecated + + on aks.tf line 6, in resource "azurerm_kubernetes_cluster" "default": + 6: depends_on = ["azurerm_role_assignment.default"] + +In this context, references are expected literally rather than in quotes. +Terraform 0.11 and earlier required quotes, but quoted references are now +deprecated and will be removed in a future version of Terraform. Remove the +quotes surrounding this reference to silence this warning. + +(and 5 more similar warnings elsewhere) + + +Error: Invalid quoted type constraints + + on variables.tf line 3, in variable "name": + 3: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 3, in variable "name": + 3: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 9, in variable "environment": + 9: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 9, in variable "environment": + 9: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 17, in variable "location": + 17: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 17, in variable "location": + 17: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 25, in variable "node_count": + 25: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 25, in variable "node_count": + 25: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 31, in variable "node_type": + 31: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 31, in variable "node_type": + 31: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 37, in variable "node_os": + 37: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 37, in variable "node_os": + 37: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 43, in variable "dns_prefix": + 43: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 43, in variable "dns_prefix": + 43: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 51, in variable "vnet_address_space": + 51: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 51, in variable "vnet_address_space": + 51: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 57, in variable "vnet_aks_subnet_space": + 57: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 57, in variable "vnet_aks_subnet_space": + 57: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 63, in variable "vnet_ingress_subnet_space": + 63: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 63, in variable "vnet_ingress_subnet_space": + 63: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 69, in variable "vnet_gateway_subnet_space": + 69: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 69, in variable "vnet_gateway_subnet_space": + 69: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 75, in variable "ingress_load_balancer_ip": + 75: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 75, in variable "ingress_load_balancer_ip": + 75: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 82, in variable "gateway_instance_count": + 82: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 82, in variable "gateway_instance_count": + 82: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +--- + ## 04 Dec 23 02:17 UTC Success: false diff --git a/quickstart/301-aks-private-cluster/TestRecord.md b/quickstart/301-aks-private-cluster/TestRecord.md index 3e2b7bc34..7fdfb1ef2 100644 --- a/quickstart/301-aks-private-cluster/TestRecord.md +++ b/quickstart/301-aks-private-cluster/TestRecord.md @@ -1,3 +1,20 @@ +## 10 Dec 23 01:10 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/null v3.2.2 + +### Error + + + +--- + ## 04 Dec 23 02:17 UTC Success: false diff --git a/quickstart/301-hub-spoke/TestRecord.md b/quickstart/301-hub-spoke/TestRecord.md index 5af826a8b..c3b1eccce 100644 --- a/quickstart/301-hub-spoke/TestRecord.md +++ b/quickstart/301-hub-spoke/TestRecord.md @@ -1,3 +1,19 @@ +## 10 Dec 23 01:09 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 + +### Error + + + +--- + ## 04 Dec 23 02:17 UTC Success: false diff --git a/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md b/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md index 96047307b..beaa90c95 100644 --- a/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md +++ b/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md @@ -1,3 +1,35 @@ +## 10 Dec 23 01:09 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... + +Initializing provider plugins... +- Finding latest version of telemaco019/azureml... +- Finding hashicorp/azurerm versions matching "2.78.0"... +- Finding latest version of hashicorp/random... +- Installing telemaco019/azureml v0.0.5... +- Installing hashicorp/azurerm v2.78.0... +- Installed hashicorp/azurerm v2.78.0 (signed by HashiCorp) +- Installing hashicorp/random v3.6.0... +- Installed hashicorp/random v3.6.0 (signed by HashiCorp) + +Error: Failed to install provider + +Error while installing telemaco019/azureml v0.0.5: checksum list has no +SHA-256 hash for +"https://github.com/orobix/terraform-provider-azureml/releases/download/v0.0.5/terraform-provider-azureml_0.0.5_linux_amd64.zip" + + +--- + ## 04 Dec 23 02:17 UTC Success: false diff --git a/quickstart/301-service-fabric-apim/TestRecord.md b/quickstart/301-service-fabric-apim/TestRecord.md index 93b35e870..0035d667b 100644 --- a/quickstart/301-service-fabric-apim/TestRecord.md +++ b/quickstart/301-service-fabric-apim/TestRecord.md @@ -1,3 +1,21 @@ +## 10 Dec 23 00:23 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.46.0 ++ provider registry.terraform.io/hashicorp/azurerm v1.36.1 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:17 UTC Success: false diff --git a/quickstart/301-service-fabric/TestRecord.md b/quickstart/301-service-fabric/TestRecord.md index 270454129..f90bb1a88 100644 --- a/quickstart/301-service-fabric/TestRecord.md +++ b/quickstart/301-service-fabric/TestRecord.md @@ -1,3 +1,21 @@ +## 10 Dec 23 01:09 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.46.0 ++ provider registry.terraform.io/hashicorp/azurerm v1.36.1 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 04 Dec 23 02:17 UTC Success: false diff --git a/quickstart/template/TestRecord.md b/quickstart/template/TestRecord.md index 717d2551b..49e411953 100644 --- a/quickstart/template/TestRecord.md +++ b/quickstart/template/TestRecord.md @@ -1,3 +1,19 @@ +## 10 Dec 23 00:23 UTC + +Success: false + +### Versions + +Terraform v1.6.2 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.56.0 + +### Error + + + +--- + ## 04 Dec 23 02:17 UTC Success: false From 982855c02d88f74c34362a4b9ac55aa27cf97f32 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 17 Dec 2023 02:28:42 +0000 Subject: [PATCH 42/64] Update TestRecord --- .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-application-gateway/TestRecord.md | 17 + .../101-attestation-provider/TestRecord.md | 18 ++ .../TestRecord.md | 18 ++ .../101-azapi-lab-services/TestRecord.md | 17 + .../101-azfw-with-fwpolicy/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-azure-cognitive-search/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../101-azure-virtual-desktop/TestRecord.md | 18 ++ .../TestRecord.md | 17 + .../101-cdn-with-custom-origin/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-aad-rbac/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-autoscale/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-free-tier/TestRecord.md | 17 + .../101-cosmos-db-manualscale/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-databricks-cmk-dbfs/TestRecord.md | 17 + .../101-ddos-protection-plan/TestRecord.md | 17 + quickstart/101-devtest-labs/TestRecord.md | 17 + quickstart/101-dns_zone/TestRecord.md | 17 + .../101-firewall-standard/TestRecord.md | 17 + .../101-front-door-classic/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../TestRecord.md | 17 + quickstart/101-key-vault-key/TestRecord.md | 17 + quickstart/101-machine-learning/TestRecord.md | 17 + quickstart/101-managed-instance/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/101-notification-hub/TestRecord.md | 17 + quickstart/101-resource-group/TestRecord.md | 17 + quickstart/101-sql-database/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-storage-static-website/TestRecord.md | 17 + .../101-stream-analytics-job/TestRecord.md | 17 + quickstart/101-synapse/TestRecord.md | 18 ++ .../TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 17 + quickstart/101-vm-auto-shutdown/TestRecord.md | 17 + quickstart/101-vm-cluster-linux/TestRecord.md | 18 ++ .../101-vm-cluster-windows/TestRecord.md | 17 + .../101-vm-with-infrastructure/TestRecord.md | 18 ++ .../101-web-app-linux-container/TestRecord.md | 17 + .../101-web-app-linux-java/TestRecord.md | 17 + .../101-web-app-windows-dotnet/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/201-aks-acr-identity/TestRecord.md | 17 + quickstart/201-aks-helm/TestRecord.md | 18 ++ .../201-aks-log-analytics/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../201-azfw-multi-addresses/TestRecord.md | 17 + .../201-azfw-with-avzones/TestRecord.md | 17 + .../201-azfw-with-ipgroups/TestRecord.md | 18 ++ .../201-azfw-with-secure-hub/TestRecord.md | 17 + .../201-azure-pipelines-ci-cd/TestRecord.md | 15 + .../201-confidential-os-disk/TestRecord.md | 17 + quickstart/201-confidential-vm/TestRecord.md | 18 ++ .../201-confidential-vmss/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/201-function-app/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 18 ++ quickstart/201-mysql-fs-db/TestRecord.md | 17 + quickstart/201-postgresql-fs-db/TestRecord.md | 17 + quickstart/201-synapse-secure/TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 17 + quickstart/201-vmss-jumpbox/TestRecord.md | 17 + .../201-web-app-docker-acr/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 32 ++ quickstart/301-aks-enterprise/TestRecord.md | 293 ++++++++++++++++++ .../301-aks-private-cluster/TestRecord.md | 17 + quickstart/301-hub-spoke/TestRecord.md | 16 + .../TestRecord.md | 32 ++ .../301-service-fabric-apim/TestRecord.md | 18 ++ quickstart/301-service-fabric/TestRecord.md | 18 ++ quickstart/template/TestRecord.md | 16 + 86 files changed, 1785 insertions(+) diff --git a/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md b/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md index 41c661d67..cd5c0412b 100644 --- a/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md +++ b/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:25 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:25 UTC Success: true diff --git a/quickstart/101-analysis-services-create/TestRecord.md b/quickstart/101-analysis-services-create/TestRecord.md index e226686b7..7283a9808 100644 --- a/quickstart/101-analysis-services-create/TestRecord.md +++ b/quickstart/101-analysis-services-create/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:22 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:11 UTC Success: true diff --git a/quickstart/101-application-gateway/TestRecord.md b/quickstart/101-application-gateway/TestRecord.md index 4a206ce13..7c38a8219 100644 --- a/quickstart/101-application-gateway/TestRecord.md +++ b/quickstart/101-application-gateway/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:33 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:24 UTC Success: true diff --git a/quickstart/101-attestation-provider/TestRecord.md b/quickstart/101-attestation-provider/TestRecord.md index aae9db575..2fe3b9177 100644 --- a/quickstart/101-attestation-provider/TestRecord.md +++ b/quickstart/101-attestation-provider/TestRecord.md @@ -1,3 +1,21 @@ +## 17 Dec 23 01:18 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 10 Dec 23 01:06 UTC Success: true diff --git a/quickstart/101-azapi-eventhub-network-rules/TestRecord.md b/quickstart/101-azapi-eventhub-network-rules/TestRecord.md index df8a6b1ec..d46d93808 100644 --- a/quickstart/101-azapi-eventhub-network-rules/TestRecord.md +++ b/quickstart/101-azapi-eventhub-network-rules/TestRecord.md @@ -1,3 +1,21 @@ +## 17 Dec 23 01:22 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v0.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 ++ provider registry.terraform.io/hashicorp/random v3.1.2 + +### Error + + + +--- + ## 10 Dec 23 01:09 UTC Success: true diff --git a/quickstart/101-azapi-lab-services/TestRecord.md b/quickstart/101-azapi-lab-services/TestRecord.md index 62c4457e3..aa0e586b9 100644 --- a/quickstart/101-azapi-lab-services/TestRecord.md +++ b/quickstart/101-azapi-lab-services/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:20 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v0.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 + +### Error + + + +--- + ## 10 Dec 23 01:06 UTC Success: false diff --git a/quickstart/101-azfw-with-fwpolicy/TestRecord.md b/quickstart/101-azfw-with-fwpolicy/TestRecord.md index 24ed70c70..792a7799d 100644 --- a/quickstart/101-azfw-with-fwpolicy/TestRecord.md +++ b/quickstart/101-azfw-with-fwpolicy/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:38 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:25 UTC Success: true diff --git a/quickstart/101-azure-api-management-create/TestRecord.md b/quickstart/101-azure-api-management-create/TestRecord.md index 335459a40..5e1c6b53f 100644 --- a/quickstart/101-azure-api-management-create/TestRecord.md +++ b/quickstart/101-azure-api-management-create/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:46 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:29 UTC Success: true diff --git a/quickstart/101-azure-cognitive-search/TestRecord.md b/quickstart/101-azure-cognitive-search/TestRecord.md index e3324a070..45e930ffb 100644 --- a/quickstart/101-azure-cognitive-search/TestRecord.md +++ b/quickstart/101-azure-cognitive-search/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:18 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:04 UTC Success: true diff --git a/quickstart/101-azure-virtual-desktop-anf/TestRecord.md b/quickstart/101-azure-virtual-desktop-anf/TestRecord.md index a96c5c853..90af9cd9b 100644 --- a/quickstart/101-azure-virtual-desktop-anf/TestRecord.md +++ b/quickstart/101-azure-virtual-desktop-anf/TestRecord.md @@ -1,3 +1,21 @@ +## 17 Dec 23 01:16 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.47.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:03 UTC Success: false diff --git a/quickstart/101-azure-virtual-desktop/TestRecord.md b/quickstart/101-azure-virtual-desktop/TestRecord.md index bdd95eb16..30851a3cd 100644 --- a/quickstart/101-azure-virtual-desktop/TestRecord.md +++ b/quickstart/101-azure-virtual-desktop/TestRecord.md @@ -1,3 +1,21 @@ +## 17 Dec 23 01:17 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.47.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:04 UTC Success: false diff --git a/quickstart/101-batch-account-with-storage/TestRecord.md b/quickstart/101-batch-account-with-storage/TestRecord.md index 1ebbb6153..4b3f28629 100644 --- a/quickstart/101-batch-account-with-storage/TestRecord.md +++ b/quickstart/101-batch-account-with-storage/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:00 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:05 UTC Success: true diff --git a/quickstart/101-cdn-with-custom-origin/TestRecord.md b/quickstart/101-cdn-with-custom-origin/TestRecord.md index 49b683616..8d2407cbb 100644 --- a/quickstart/101-cdn-with-custom-origin/TestRecord.md +++ b/quickstart/101-cdn-with-custom-origin/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:22 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:10 UTC Success: true diff --git a/quickstart/101-cognitive-services-account/TestRecord.md b/quickstart/101-cognitive-services-account/TestRecord.md index c5608ce23..6bdc21b53 100644 --- a/quickstart/101-cognitive-services-account/TestRecord.md +++ b/quickstart/101-cognitive-services-account/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:16 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:03 UTC Success: true diff --git a/quickstart/101-cosmos-db-aad-rbac/TestRecord.md b/quickstart/101-cosmos-db-aad-rbac/TestRecord.md index 64159accf..940fdf080 100644 --- a/quickstart/101-cosmos-db-aad-rbac/TestRecord.md +++ b/quickstart/101-cosmos-db-aad-rbac/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:28 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:15 UTC Success: true diff --git a/quickstart/101-cosmos-db-analyticalstore/TestRecord.md b/quickstart/101-cosmos-db-analyticalstore/TestRecord.md index 8bec40ece..fc4747065 100644 --- a/quickstart/101-cosmos-db-analyticalstore/TestRecord.md +++ b/quickstart/101-cosmos-db-analyticalstore/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:28 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:51 UTC Success: true diff --git a/quickstart/101-cosmos-db-autoscale/TestRecord.md b/quickstart/101-cosmos-db-autoscale/TestRecord.md index 3d6c30cf9..4a02f1ae5 100644 --- a/quickstart/101-cosmos-db-autoscale/TestRecord.md +++ b/quickstart/101-cosmos-db-autoscale/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:19 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:08 UTC Success: true diff --git a/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md b/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md index 221140df7..0946dc43d 100644 --- a/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md +++ b/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:17 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:05 UTC Success: true diff --git a/quickstart/101-cosmos-db-free-tier/TestRecord.md b/quickstart/101-cosmos-db-free-tier/TestRecord.md index a56f35d78..950ec0eac 100644 --- a/quickstart/101-cosmos-db-free-tier/TestRecord.md +++ b/quickstart/101-cosmos-db-free-tier/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:16 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:03 UTC Success: true diff --git a/quickstart/101-cosmos-db-manualscale/TestRecord.md b/quickstart/101-cosmos-db-manualscale/TestRecord.md index 1374ebf13..e43743e1b 100644 --- a/quickstart/101-cosmos-db-manualscale/TestRecord.md +++ b/quickstart/101-cosmos-db-manualscale/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:15 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:02 UTC Success: true diff --git a/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md b/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md index adbff2e1c..d0d26d87b 100644 --- a/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md +++ b/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:15 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:03 UTC Success: true diff --git a/quickstart/101-databricks-cmk-dbfs/TestRecord.md b/quickstart/101-databricks-cmk-dbfs/TestRecord.md index 5115cc338..44cdd4868 100644 --- a/quickstart/101-databricks-cmk-dbfs/TestRecord.md +++ b/quickstart/101-databricks-cmk-dbfs/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:06 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:56 UTC Success: true diff --git a/quickstart/101-ddos-protection-plan/TestRecord.md b/quickstart/101-ddos-protection-plan/TestRecord.md index 760bb85ea..b3cd58403 100644 --- a/quickstart/101-ddos-protection-plan/TestRecord.md +++ b/quickstart/101-ddos-protection-plan/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:46 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:48 UTC Success: true diff --git a/quickstart/101-devtest-labs/TestRecord.md b/quickstart/101-devtest-labs/TestRecord.md index e2f56b9af..a53b1fd11 100644 --- a/quickstart/101-devtest-labs/TestRecord.md +++ b/quickstart/101-devtest-labs/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:18 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:05 UTC Success: true diff --git a/quickstart/101-dns_zone/TestRecord.md b/quickstart/101-dns_zone/TestRecord.md index e6e03b1cd..4519027ce 100644 --- a/quickstart/101-dns_zone/TestRecord.md +++ b/quickstart/101-dns_zone/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:58 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:47 UTC Success: true diff --git a/quickstart/101-firewall-standard/TestRecord.md b/quickstart/101-firewall-standard/TestRecord.md index 3f8b25c95..da6f1f43a 100644 --- a/quickstart/101-firewall-standard/TestRecord.md +++ b/quickstart/101-firewall-standard/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:16 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:14 UTC Success: true diff --git a/quickstart/101-front-door-classic/TestRecord.md b/quickstart/101-front-door-classic/TestRecord.md index 0487499a8..de0163d35 100644 --- a/quickstart/101-front-door-classic/TestRecord.md +++ b/quickstart/101-front-door-classic/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:01 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:49 UTC Success: true diff --git a/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md b/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md index a09b8bd82..40c21ef45 100644 --- a/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md +++ b/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md @@ -1,3 +1,21 @@ +## 17 Dec 23 01:04 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 10 Dec 23 00:49 UTC Success: true diff --git a/quickstart/101-front-door-standard-premium/TestRecord.md b/quickstart/101-front-door-standard-premium/TestRecord.md index 611794703..b17e44032 100644 --- a/quickstart/101-front-door-standard-premium/TestRecord.md +++ b/quickstart/101-front-door-standard-premium/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:58 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:46 UTC Success: true diff --git a/quickstart/101-key-vault-key/TestRecord.md b/quickstart/101-key-vault-key/TestRecord.md index 908d1be43..5f30383ee 100644 --- a/quickstart/101-key-vault-key/TestRecord.md +++ b/quickstart/101-key-vault-key/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:58 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:47 UTC Success: true diff --git a/quickstart/101-machine-learning/TestRecord.md b/quickstart/101-machine-learning/TestRecord.md index 55aa4266e..ddc717900 100644 --- a/quickstart/101-machine-learning/TestRecord.md +++ b/quickstart/101-machine-learning/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:03 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:50 UTC Success: true diff --git a/quickstart/101-managed-instance/TestRecord.md b/quickstart/101-managed-instance/TestRecord.md index 69651c4ee..ccec3da9c 100644 --- a/quickstart/101-managed-instance/TestRecord.md +++ b/quickstart/101-managed-instance/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 02:28 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 02:15 UTC Success: true diff --git a/quickstart/101-managed-lustre-create-filesystem/TestRecord.md b/quickstart/101-managed-lustre-create-filesystem/TestRecord.md index 77cc01f71..0ca29bec5 100644 --- a/quickstart/101-managed-lustre-create-filesystem/TestRecord.md +++ b/quickstart/101-managed-lustre-create-filesystem/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:14 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:01 UTC Success: true diff --git a/quickstart/101-notification-hub/TestRecord.md b/quickstart/101-notification-hub/TestRecord.md index e6505d177..691a82b03 100644 --- a/quickstart/101-notification-hub/TestRecord.md +++ b/quickstart/101-notification-hub/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:57 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:45 UTC Success: true diff --git a/quickstart/101-resource-group/TestRecord.md b/quickstart/101-resource-group/TestRecord.md index 3cec66274..a03425322 100644 --- a/quickstart/101-resource-group/TestRecord.md +++ b/quickstart/101-resource-group/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:52 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:40 UTC Success: true diff --git a/quickstart/101-sql-database/TestRecord.md b/quickstart/101-sql-database/TestRecord.md index b7d6f6c3c..80ae67777 100644 --- a/quickstart/101-sql-database/TestRecord.md +++ b/quickstart/101-sql-database/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:56 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:44 UTC Success: true diff --git a/quickstart/101-sql-security-alert-policy/TestRecord.md b/quickstart/101-sql-security-alert-policy/TestRecord.md index a34852486..58e2092e9 100644 --- a/quickstart/101-sql-security-alert-policy/TestRecord.md +++ b/quickstart/101-sql-security-alert-policy/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:53 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:42 UTC Success: true diff --git a/quickstart/101-storage-account-with-static-website/TestRecord.md b/quickstart/101-storage-account-with-static-website/TestRecord.md index 776920fca..bf8803319 100644 --- a/quickstart/101-storage-account-with-static-website/TestRecord.md +++ b/quickstart/101-storage-account-with-static-website/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:52 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:39 UTC Success: true diff --git a/quickstart/101-storage-static-website/TestRecord.md b/quickstart/101-storage-static-website/TestRecord.md index ad833cddc..8074c3f6f 100644 --- a/quickstart/101-storage-static-website/TestRecord.md +++ b/quickstart/101-storage-static-website/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:51 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 10 Dec 23 00:40 UTC Success: true diff --git a/quickstart/101-stream-analytics-job/TestRecord.md b/quickstart/101-stream-analytics-job/TestRecord.md index a7116354c..f9500ccee 100644 --- a/quickstart/101-stream-analytics-job/TestRecord.md +++ b/quickstart/101-stream-analytics-job/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:51 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:38 UTC Success: true diff --git a/quickstart/101-synapse/TestRecord.md b/quickstart/101-synapse/TestRecord.md index 14f8ec8c8..65559a2db 100644 --- a/quickstart/101-synapse/TestRecord.md +++ b/quickstart/101-synapse/TestRecord.md @@ -1,3 +1,21 @@ +## 17 Dec 23 00:58 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/http v3.4.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:46 UTC Success: true diff --git a/quickstart/101-traffic-manager-external-endpoint/TestRecord.md b/quickstart/101-traffic-manager-external-endpoint/TestRecord.md index 3f25261b6..50f8497c5 100644 --- a/quickstart/101-traffic-manager-external-endpoint/TestRecord.md +++ b/quickstart/101-traffic-manager-external-endpoint/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:50 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:37 UTC Success: true diff --git a/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md b/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md index 9cca44e07..d6b3b3dc2 100644 --- a/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md +++ b/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md @@ -1,3 +1,22 @@ +## 17 Dec 23 00:53 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.56.0 ++ provider registry.terraform.io/hashicorp/null v3.2.2 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/time v0.10.0 + +### Error + + + +--- + ## 10 Dec 23 00:41 UTC Success: true diff --git a/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md b/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md index 29d8c40fa..77d87d06f 100644 --- a/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md +++ b/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:52 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:39 UTC Success: true diff --git a/quickstart/101-vm-auto-shutdown/TestRecord.md b/quickstart/101-vm-auto-shutdown/TestRecord.md index ca90fdbdb..269316d86 100644 --- a/quickstart/101-vm-auto-shutdown/TestRecord.md +++ b/quickstart/101-vm-auto-shutdown/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:27 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:36 UTC Success: true diff --git a/quickstart/101-vm-cluster-linux/TestRecord.md b/quickstart/101-vm-cluster-linux/TestRecord.md index d430b357e..d700d781b 100644 --- a/quickstart/101-vm-cluster-linux/TestRecord.md +++ b/quickstart/101-vm-cluster-linux/TestRecord.md @@ -1,3 +1,21 @@ +## 17 Dec 23 00:50 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:38 UTC Success: true diff --git a/quickstart/101-vm-cluster-windows/TestRecord.md b/quickstart/101-vm-cluster-windows/TestRecord.md index 0a500802d..1508ec97b 100644 --- a/quickstart/101-vm-cluster-windows/TestRecord.md +++ b/quickstart/101-vm-cluster-windows/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:50 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:37 UTC Success: true diff --git a/quickstart/101-vm-with-infrastructure/TestRecord.md b/quickstart/101-vm-with-infrastructure/TestRecord.md index c15b25b8c..39fcf9611 100644 --- a/quickstart/101-vm-with-infrastructure/TestRecord.md +++ b/quickstart/101-vm-with-infrastructure/TestRecord.md @@ -1,3 +1,21 @@ +## 17 Dec 23 00:49 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:32 UTC Success: true diff --git a/quickstart/101-web-app-linux-container/TestRecord.md b/quickstart/101-web-app-linux-container/TestRecord.md index 9c5a575ed..39aa6a693 100644 --- a/quickstart/101-web-app-linux-container/TestRecord.md +++ b/quickstart/101-web-app-linux-container/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:45 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:29 UTC Success: true diff --git a/quickstart/101-web-app-linux-java/TestRecord.md b/quickstart/101-web-app-linux-java/TestRecord.md index 772dd211c..e0cd93e65 100644 --- a/quickstart/101-web-app-linux-java/TestRecord.md +++ b/quickstart/101-web-app-linux-java/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:45 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:28 UTC Success: true diff --git a/quickstart/101-web-app-windows-dotnet/TestRecord.md b/quickstart/101-web-app-windows-dotnet/TestRecord.md index 2e777890d..aafc281fb 100644 --- a/quickstart/101-web-app-windows-dotnet/TestRecord.md +++ b/quickstart/101-web-app-windows-dotnet/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:44 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:26 UTC Success: true diff --git a/quickstart/101-windows-vm-with-iis-server/TestRecord.md b/quickstart/101-windows-vm-with-iis-server/TestRecord.md index 9a720d437..73daf67e9 100644 --- a/quickstart/101-windows-vm-with-iis-server/TestRecord.md +++ b/quickstart/101-windows-vm-with-iis-server/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:53 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:37 UTC Success: true diff --git a/quickstart/201-aks-acr-identity/TestRecord.md b/quickstart/201-aks-acr-identity/TestRecord.md index 823b23845..005de5414 100644 --- a/quickstart/201-aks-acr-identity/TestRecord.md +++ b/quickstart/201-aks-acr-identity/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:45 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:33 UTC Success: true diff --git a/quickstart/201-aks-helm/TestRecord.md b/quickstart/201-aks-helm/TestRecord.md index add320c05..ff224a529 100644 --- a/quickstart/201-aks-helm/TestRecord.md +++ b/quickstart/201-aks-helm/TestRecord.md @@ -1,3 +1,21 @@ +## 17 Dec 23 00:44 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/helm v2.9.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:33 UTC Success: true diff --git a/quickstart/201-aks-log-analytics/TestRecord.md b/quickstart/201-aks-log-analytics/TestRecord.md index 8f1cf3461..8eed7dc2a 100644 --- a/quickstart/201-aks-log-analytics/TestRecord.md +++ b/quickstart/201-aks-log-analytics/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:43 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 10 Dec 23 00:34 UTC Success: true diff --git a/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md b/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md index 3531ebf37..0277d72e5 100644 --- a/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md +++ b/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md @@ -1,3 +1,21 @@ +## 17 Dec 23 00:43 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/kubernetes v2.24.0 ++ provider registry.terraform.io/hashicorp/random v3.3.2 + +### Error + + + +--- + ## 10 Dec 23 00:32 UTC Success: true diff --git a/quickstart/201-azfw-multi-addresses/TestRecord.md b/quickstart/201-azfw-multi-addresses/TestRecord.md index ffd40d261..1b7a753cf 100644 --- a/quickstart/201-azfw-multi-addresses/TestRecord.md +++ b/quickstart/201-azfw-multi-addresses/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:52 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:43 UTC Success: true diff --git a/quickstart/201-azfw-with-avzones/TestRecord.md b/quickstart/201-azfw-with-avzones/TestRecord.md index ff16baf4d..b39f9b45d 100644 --- a/quickstart/201-azfw-with-avzones/TestRecord.md +++ b/quickstart/201-azfw-with-avzones/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:56 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:43 UTC Success: true diff --git a/quickstart/201-azfw-with-ipgroups/TestRecord.md b/quickstart/201-azfw-with-ipgroups/TestRecord.md index f632f68f7..6e93214c9 100644 --- a/quickstart/201-azfw-with-ipgroups/TestRecord.md +++ b/quickstart/201-azfw-with-ipgroups/TestRecord.md @@ -1,3 +1,21 @@ +## 17 Dec 23 00:49 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:40 UTC Success: true diff --git a/quickstart/201-azfw-with-secure-hub/TestRecord.md b/quickstart/201-azfw-with-secure-hub/TestRecord.md index 0316597b7..49cf245cd 100644 --- a/quickstart/201-azfw-with-secure-hub/TestRecord.md +++ b/quickstart/201-azfw-with-secure-hub/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 01:21 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:17 UTC Success: true diff --git a/quickstart/201-azure-pipelines-ci-cd/TestRecord.md b/quickstart/201-azure-pipelines-ci-cd/TestRecord.md index a0fbd3bef..14619b89a 100644 --- a/quickstart/201-azure-pipelines-ci-cd/TestRecord.md +++ b/quickstart/201-azure-pipelines-ci-cd/TestRecord.md @@ -1,3 +1,18 @@ +## 17 Dec 23 00:33 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 + +### Error + + + +--- + ## 10 Dec 23 01:27 UTC Success: true diff --git a/quickstart/201-confidential-os-disk/TestRecord.md b/quickstart/201-confidential-os-disk/TestRecord.md index 48551ccc9..349571f1a 100644 --- a/quickstart/201-confidential-os-disk/TestRecord.md +++ b/quickstart/201-confidential-os-disk/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:34 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:28 UTC Success: true diff --git a/quickstart/201-confidential-vm/TestRecord.md b/quickstart/201-confidential-vm/TestRecord.md index db2caa370..bfc62d872 100644 --- a/quickstart/201-confidential-vm/TestRecord.md +++ b/quickstart/201-confidential-vm/TestRecord.md @@ -1,3 +1,21 @@ +## 17 Dec 23 00:37 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 10 Dec 23 01:32 UTC Success: true diff --git a/quickstart/201-confidential-vmss/TestRecord.md b/quickstart/201-confidential-vmss/TestRecord.md index 9c7b7c48a..07dad933c 100644 --- a/quickstart/201-confidential-vmss/TestRecord.md +++ b/quickstart/201-confidential-vmss/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:35 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:30 UTC Success: true diff --git a/quickstart/201-function-app-key-vault-ref/TestRecord.md b/quickstart/201-function-app-key-vault-ref/TestRecord.md index aa51b0399..146e9ebf4 100644 --- a/quickstart/201-function-app-key-vault-ref/TestRecord.md +++ b/quickstart/201-function-app-key-vault-ref/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:33 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:27 UTC Success: true diff --git a/quickstart/201-function-app/TestRecord.md b/quickstart/201-function-app/TestRecord.md index 3fbd450d0..4ad6854e7 100644 --- a/quickstart/201-function-app/TestRecord.md +++ b/quickstart/201-function-app/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:31 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:26 UTC Success: true diff --git a/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md b/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md index 7f1250b25..f670c46ae 100644 --- a/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md +++ b/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:34 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:30 UTC Success: false diff --git a/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md b/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md index 8748df3e1..747e20a5e 100644 --- a/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md +++ b/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:47 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:39 UTC Success: true diff --git a/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md b/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md index d5cded72b..4d4021fc4 100644 --- a/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md +++ b/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md @@ -1,3 +1,22 @@ +## 17 Dec 23 00:34 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.10.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/time v0.9.1 + +### Error + + + +--- + ## 10 Dec 23 01:26 UTC Success: true diff --git a/quickstart/201-machine-learning-moderately-secure/TestRecord.md b/quickstart/201-machine-learning-moderately-secure/TestRecord.md index c3d03f2d6..c79df99af 100644 --- a/quickstart/201-machine-learning-moderately-secure/TestRecord.md +++ b/quickstart/201-machine-learning-moderately-secure/TestRecord.md @@ -1,3 +1,21 @@ +## 17 Dec 23 00:25 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/orobix/azureml v0.0.5 + +### Error + + + +--- + ## 10 Dec 23 01:17 UTC Success: false diff --git a/quickstart/201-mysql-fs-db/TestRecord.md b/quickstart/201-mysql-fs-db/TestRecord.md index ed883a27b..84397901a 100644 --- a/quickstart/201-mysql-fs-db/TestRecord.md +++ b/quickstart/201-mysql-fs-db/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:42 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:34 UTC Success: true diff --git a/quickstart/201-postgresql-fs-db/TestRecord.md b/quickstart/201-postgresql-fs-db/TestRecord.md index e92c1a734..6c5cb063d 100644 --- a/quickstart/201-postgresql-fs-db/TestRecord.md +++ b/quickstart/201-postgresql-fs-db/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:33 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:25 UTC Success: true diff --git a/quickstart/201-synapse-secure/TestRecord.md b/quickstart/201-synapse-secure/TestRecord.md index a24b0c816..a307b2b99 100644 --- a/quickstart/201-synapse-secure/TestRecord.md +++ b/quickstart/201-synapse-secure/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:24 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.32.0 ++ provider registry.terraform.io/hashicorp/http v3.4.0 + +### Error + + + +--- + ## 10 Dec 23 01:16 UTC Success: false diff --git a/quickstart/201-vm-disk-encryption-extension/TestRecord.md b/quickstart/201-vm-disk-encryption-extension/TestRecord.md index a3e5f0eeb..dfff944c0 100644 --- a/quickstart/201-vm-disk-encryption-extension/TestRecord.md +++ b/quickstart/201-vm-disk-encryption-extension/TestRecord.md @@ -1,3 +1,22 @@ +## 17 Dec 23 00:32 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/local v2.3.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 10 Dec 23 01:23 UTC Success: true diff --git a/quickstart/201-vmss-disk-encryption-extension/TestRecord.md b/quickstart/201-vmss-disk-encryption-extension/TestRecord.md index 58bb7c6dc..cea5f7a8e 100644 --- a/quickstart/201-vmss-disk-encryption-extension/TestRecord.md +++ b/quickstart/201-vmss-disk-encryption-extension/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:33 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:22 UTC Success: true diff --git a/quickstart/201-vmss-jumpbox/TestRecord.md b/quickstart/201-vmss-jumpbox/TestRecord.md index 061a3726d..bacab1339 100644 --- a/quickstart/201-vmss-jumpbox/TestRecord.md +++ b/quickstart/201-vmss-jumpbox/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:29 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:16 UTC Success: true diff --git a/quickstart/201-web-app-docker-acr/TestRecord.md b/quickstart/201-web-app-docker-acr/TestRecord.md index 35961b2bf..3f59deec3 100644 --- a/quickstart/201-web-app-docker-acr/TestRecord.md +++ b/quickstart/201-web-app-docker-acr/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:26 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:12 UTC Success: true diff --git a/quickstart/201-web-app-postgres-keyvault/TestRecord.md b/quickstart/201-web-app-postgres-keyvault/TestRecord.md index fdaa4c5c3..f670f6714 100644 --- a/quickstart/201-web-app-postgres-keyvault/TestRecord.md +++ b/quickstart/201-web-app-postgres-keyvault/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:29 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:15 UTC Success: true diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md b/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md index db846a549..9795cc86b 100644 --- a/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md @@ -1,3 +1,35 @@ +## 17 Dec 23 00:23 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... + +Initializing provider plugins... +- Finding latest version of hashicorp/random... +- Finding hashicorp/azurerm versions matching "2.78.0"... +- Finding latest version of telemaco019/azureml... +- Installing hashicorp/random v3.6.0... +- Installed hashicorp/random v3.6.0 (signed by HashiCorp) +- Installing hashicorp/azurerm v2.78.0... +- Installed hashicorp/azurerm v2.78.0 (signed by HashiCorp) +- Installing telemaco019/azureml v0.0.5... + +Error: Failed to install provider + +Error while installing telemaco019/azureml v0.0.5: checksum list has no +SHA-256 hash for +"https://github.com/orobix/terraform-provider-azureml/releases/download/v0.0.5/terraform-provider-azureml_0.0.5_linux_amd64.zip" + + +--- + ## 10 Dec 23 01:10 UTC Success: false diff --git a/quickstart/301-aks-enterprise/TestRecord.md b/quickstart/301-aks-enterprise/TestRecord.md index e860bcdc2..aecc95175 100644 --- a/quickstart/301-aks-enterprise/TestRecord.md +++ b/quickstart/301-aks-enterprise/TestRecord.md @@ -1,3 +1,296 @@ +## 17 Dec 23 00:23 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... +Terraform encountered problems during initialisation, including problems +with the configuration, described below. + +The Terraform configuration must be valid before initialization so that +Terraform can determine which modules and providers need to be installed. + +Warning: Quoted references are deprecated + + on aks.tf line 6, in resource "azurerm_kubernetes_cluster" "default": + 6: depends_on = ["azurerm_role_assignment.default"] + +In this context, references are expected literally rather than in quotes. +Terraform 0.11 and earlier required quotes, but quoted references are now +deprecated and will be removed in a future version of Terraform. Remove the +quotes surrounding this reference to silence this warning. + +(and 5 more similar warnings elsewhere) + + +Error: Invalid quoted type constraints + + on variables.tf line 3, in variable "name": + 3: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 3, in variable "name": + 3: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 9, in variable "environment": + 9: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 9, in variable "environment": + 9: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 17, in variable "location": + 17: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 17, in variable "location": + 17: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 25, in variable "node_count": + 25: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 25, in variable "node_count": + 25: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 31, in variable "node_type": + 31: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 31, in variable "node_type": + 31: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 37, in variable "node_os": + 37: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 37, in variable "node_os": + 37: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 43, in variable "dns_prefix": + 43: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 43, in variable "dns_prefix": + 43: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 51, in variable "vnet_address_space": + 51: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 51, in variable "vnet_address_space": + 51: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 57, in variable "vnet_aks_subnet_space": + 57: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 57, in variable "vnet_aks_subnet_space": + 57: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 63, in variable "vnet_ingress_subnet_space": + 63: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 63, in variable "vnet_ingress_subnet_space": + 63: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 69, in variable "vnet_gateway_subnet_space": + 69: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 69, in variable "vnet_gateway_subnet_space": + 69: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 75, in variable "ingress_load_balancer_ip": + 75: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 75, in variable "ingress_load_balancer_ip": + 75: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 82, in variable "gateway_instance_count": + 82: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 82, in variable "gateway_instance_count": + 82: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +--- + ## 10 Dec 23 01:10 UTC Success: false diff --git a/quickstart/301-aks-private-cluster/TestRecord.md b/quickstart/301-aks-private-cluster/TestRecord.md index 7fdfb1ef2..c26d16793 100644 --- a/quickstart/301-aks-private-cluster/TestRecord.md +++ b/quickstart/301-aks-private-cluster/TestRecord.md @@ -1,3 +1,20 @@ +## 17 Dec 23 00:23 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/null v3.2.2 + +### Error + + + +--- + ## 10 Dec 23 01:10 UTC Success: false diff --git a/quickstart/301-hub-spoke/TestRecord.md b/quickstart/301-hub-spoke/TestRecord.md index c3b1eccce..08c83a041 100644 --- a/quickstart/301-hub-spoke/TestRecord.md +++ b/quickstart/301-hub-spoke/TestRecord.md @@ -1,3 +1,19 @@ +## 17 Dec 23 00:23 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 + +### Error + + + +--- + ## 10 Dec 23 01:09 UTC Success: false diff --git a/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md b/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md index beaa90c95..7c6d5ac0e 100644 --- a/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md +++ b/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md @@ -1,3 +1,35 @@ +## 17 Dec 23 00:23 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... + +Initializing provider plugins... +- Finding latest version of telemaco019/azureml... +- Finding hashicorp/azurerm versions matching "2.78.0"... +- Finding latest version of hashicorp/random... +- Installing telemaco019/azureml v0.0.5... +- Installing hashicorp/azurerm v2.78.0... +- Installed hashicorp/azurerm v2.78.0 (signed by HashiCorp) +- Installing hashicorp/random v3.6.0... +- Installed hashicorp/random v3.6.0 (signed by HashiCorp) + +Error: Failed to install provider + +Error while installing telemaco019/azureml v0.0.5: checksum list has no +SHA-256 hash for +"https://github.com/orobix/terraform-provider-azureml/releases/download/v0.0.5/terraform-provider-azureml_0.0.5_linux_amd64.zip" + + +--- + ## 10 Dec 23 01:09 UTC Success: false diff --git a/quickstart/301-service-fabric-apim/TestRecord.md b/quickstart/301-service-fabric-apim/TestRecord.md index 0035d667b..8257027bc 100644 --- a/quickstart/301-service-fabric-apim/TestRecord.md +++ b/quickstart/301-service-fabric-apim/TestRecord.md @@ -1,3 +1,21 @@ +## 17 Dec 23 00:23 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.47.0 ++ provider registry.terraform.io/hashicorp/azurerm v1.36.1 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 00:23 UTC Success: false diff --git a/quickstart/301-service-fabric/TestRecord.md b/quickstart/301-service-fabric/TestRecord.md index f90bb1a88..87a67ae5a 100644 --- a/quickstart/301-service-fabric/TestRecord.md +++ b/quickstart/301-service-fabric/TestRecord.md @@ -1,3 +1,21 @@ +## 17 Dec 23 00:23 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.47.0 ++ provider registry.terraform.io/hashicorp/azurerm v1.36.1 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 10 Dec 23 01:09 UTC Success: false diff --git a/quickstart/template/TestRecord.md b/quickstart/template/TestRecord.md index 49e411953..d4f856008 100644 --- a/quickstart/template/TestRecord.md +++ b/quickstart/template/TestRecord.md @@ -1,3 +1,19 @@ +## 17 Dec 23 00:23 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.56.0 + +### Error + + + +--- + ## 10 Dec 23 00:23 UTC Success: false From 0aa98ad3225086fad7c0e6a9df39b8ef4eb7c518 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 24 Dec 2023 01:51:19 +0000 Subject: [PATCH 43/64] Update TestRecord --- .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-application-gateway/TestRecord.md | 17 + .../101-attestation-provider/TestRecord.md | 18 ++ .../TestRecord.md | 18 ++ .../101-azapi-lab-services/TestRecord.md | 17 + .../101-azfw-with-fwpolicy/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-azure-cognitive-search/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../101-azure-virtual-desktop/TestRecord.md | 18 ++ .../TestRecord.md | 17 + .../101-cdn-with-custom-origin/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-aad-rbac/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-autoscale/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-free-tier/TestRecord.md | 17 + .../101-cosmos-db-manualscale/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-databricks-cmk-dbfs/TestRecord.md | 17 + .../101-ddos-protection-plan/TestRecord.md | 17 + quickstart/101-devtest-labs/TestRecord.md | 17 + quickstart/101-dns_zone/TestRecord.md | 17 + .../101-firewall-standard/TestRecord.md | 17 + .../101-front-door-classic/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../TestRecord.md | 17 + quickstart/101-key-vault-key/TestRecord.md | 17 + quickstart/101-machine-learning/TestRecord.md | 17 + quickstart/101-managed-instance/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/101-notification-hub/TestRecord.md | 17 + quickstart/101-resource-group/TestRecord.md | 17 + quickstart/101-sql-database/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-storage-static-website/TestRecord.md | 17 + .../101-stream-analytics-job/TestRecord.md | 17 + quickstart/101-synapse/TestRecord.md | 18 ++ .../TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 17 + quickstart/101-vm-auto-shutdown/TestRecord.md | 17 + quickstart/101-vm-cluster-linux/TestRecord.md | 18 ++ .../101-vm-cluster-windows/TestRecord.md | 17 + .../101-vm-with-infrastructure/TestRecord.md | 18 ++ .../101-web-app-linux-container/TestRecord.md | 17 + .../101-web-app-linux-java/TestRecord.md | 17 + .../101-web-app-windows-dotnet/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/201-aks-acr-identity/TestRecord.md | 17 + quickstart/201-aks-helm/TestRecord.md | 18 ++ .../201-aks-log-analytics/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../201-azfw-multi-addresses/TestRecord.md | 17 + .../201-azfw-with-avzones/TestRecord.md | 17 + .../201-azfw-with-ipgroups/TestRecord.md | 18 ++ .../201-azfw-with-secure-hub/TestRecord.md | 17 + .../201-azure-pipelines-ci-cd/TestRecord.md | 15 + .../201-confidential-os-disk/TestRecord.md | 17 + quickstart/201-confidential-vm/TestRecord.md | 18 ++ .../201-confidential-vmss/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/201-function-app/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 18 ++ quickstart/201-mysql-fs-db/TestRecord.md | 17 + quickstart/201-postgresql-fs-db/TestRecord.md | 17 + quickstart/201-synapse-secure/TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 17 + quickstart/201-vmss-jumpbox/TestRecord.md | 17 + .../201-web-app-docker-acr/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 32 ++ quickstart/301-aks-enterprise/TestRecord.md | 293 ++++++++++++++++++ .../301-aks-private-cluster/TestRecord.md | 17 + quickstart/301-hub-spoke/TestRecord.md | 16 + .../TestRecord.md | 32 ++ .../301-service-fabric-apim/TestRecord.md | 18 ++ quickstart/301-service-fabric/TestRecord.md | 18 ++ quickstart/template/TestRecord.md | 16 + 86 files changed, 1785 insertions(+) diff --git a/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md b/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md index cd5c0412b..e8657ff6a 100644 --- a/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md +++ b/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:19 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:25 UTC Success: true diff --git a/quickstart/101-analysis-services-create/TestRecord.md b/quickstart/101-analysis-services-create/TestRecord.md index 7283a9808..e1f425aaf 100644 --- a/quickstart/101-analysis-services-create/TestRecord.md +++ b/quickstart/101-analysis-services-create/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:47 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:22 UTC Success: true diff --git a/quickstart/101-application-gateway/TestRecord.md b/quickstart/101-application-gateway/TestRecord.md index 7c38a8219..78045a04c 100644 --- a/quickstart/101-application-gateway/TestRecord.md +++ b/quickstart/101-application-gateway/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:01 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:33 UTC Success: true diff --git a/quickstart/101-attestation-provider/TestRecord.md b/quickstart/101-attestation-provider/TestRecord.md index 2fe3b9177..2aa70cfb2 100644 --- a/quickstart/101-attestation-provider/TestRecord.md +++ b/quickstart/101-attestation-provider/TestRecord.md @@ -1,3 +1,21 @@ +## 24 Dec 23 00:45 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 17 Dec 23 01:18 UTC Success: true diff --git a/quickstart/101-azapi-eventhub-network-rules/TestRecord.md b/quickstart/101-azapi-eventhub-network-rules/TestRecord.md index d46d93808..56b20e695 100644 --- a/quickstart/101-azapi-eventhub-network-rules/TestRecord.md +++ b/quickstart/101-azapi-eventhub-network-rules/TestRecord.md @@ -1,3 +1,21 @@ +## 24 Dec 23 00:46 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v0.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 ++ provider registry.terraform.io/hashicorp/random v3.1.2 + +### Error + + + +--- + ## 17 Dec 23 01:22 UTC Success: true diff --git a/quickstart/101-azapi-lab-services/TestRecord.md b/quickstart/101-azapi-lab-services/TestRecord.md index aa0e586b9..d63be380a 100644 --- a/quickstart/101-azapi-lab-services/TestRecord.md +++ b/quickstart/101-azapi-lab-services/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:44 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v0.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 + +### Error + + + +--- + ## 17 Dec 23 01:20 UTC Success: false diff --git a/quickstart/101-azfw-with-fwpolicy/TestRecord.md b/quickstart/101-azfw-with-fwpolicy/TestRecord.md index 792a7799d..dde8522a0 100644 --- a/quickstart/101-azfw-with-fwpolicy/TestRecord.md +++ b/quickstart/101-azfw-with-fwpolicy/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:05 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:38 UTC Success: true diff --git a/quickstart/101-azure-api-management-create/TestRecord.md b/quickstart/101-azure-api-management-create/TestRecord.md index 5e1c6b53f..b0bba0836 100644 --- a/quickstart/101-azure-api-management-create/TestRecord.md +++ b/quickstart/101-azure-api-management-create/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:08 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:46 UTC Success: true diff --git a/quickstart/101-azure-cognitive-search/TestRecord.md b/quickstart/101-azure-cognitive-search/TestRecord.md index 45e930ffb..620435833 100644 --- a/quickstart/101-azure-cognitive-search/TestRecord.md +++ b/quickstart/101-azure-cognitive-search/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:42 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:18 UTC Success: true diff --git a/quickstart/101-azure-virtual-desktop-anf/TestRecord.md b/quickstart/101-azure-virtual-desktop-anf/TestRecord.md index 90af9cd9b..fa9a2ee1b 100644 --- a/quickstart/101-azure-virtual-desktop-anf/TestRecord.md +++ b/quickstart/101-azure-virtual-desktop-anf/TestRecord.md @@ -1,3 +1,21 @@ +## 24 Dec 23 00:41 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.47.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:16 UTC Success: false diff --git a/quickstart/101-azure-virtual-desktop/TestRecord.md b/quickstart/101-azure-virtual-desktop/TestRecord.md index 30851a3cd..89d275066 100644 --- a/quickstart/101-azure-virtual-desktop/TestRecord.md +++ b/quickstart/101-azure-virtual-desktop/TestRecord.md @@ -1,3 +1,21 @@ +## 24 Dec 23 00:41 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.47.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:17 UTC Success: false diff --git a/quickstart/101-batch-account-with-storage/TestRecord.md b/quickstart/101-batch-account-with-storage/TestRecord.md index 4b3f28629..4b80e66ff 100644 --- a/quickstart/101-batch-account-with-storage/TestRecord.md +++ b/quickstart/101-batch-account-with-storage/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:43 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:00 UTC Success: true diff --git a/quickstart/101-cdn-with-custom-origin/TestRecord.md b/quickstart/101-cdn-with-custom-origin/TestRecord.md index 8d2407cbb..d1a6b7911 100644 --- a/quickstart/101-cdn-with-custom-origin/TestRecord.md +++ b/quickstart/101-cdn-with-custom-origin/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:47 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:22 UTC Success: true diff --git a/quickstart/101-cognitive-services-account/TestRecord.md b/quickstart/101-cognitive-services-account/TestRecord.md index 6bdc21b53..c4c8e800a 100644 --- a/quickstart/101-cognitive-services-account/TestRecord.md +++ b/quickstart/101-cognitive-services-account/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:41 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:16 UTC Success: true diff --git a/quickstart/101-cosmos-db-aad-rbac/TestRecord.md b/quickstart/101-cosmos-db-aad-rbac/TestRecord.md index 940fdf080..67e946915 100644 --- a/quickstart/101-cosmos-db-aad-rbac/TestRecord.md +++ b/quickstart/101-cosmos-db-aad-rbac/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:52 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:28 UTC Success: true diff --git a/quickstart/101-cosmos-db-analyticalstore/TestRecord.md b/quickstart/101-cosmos-db-analyticalstore/TestRecord.md index fc4747065..3928c72d7 100644 --- a/quickstart/101-cosmos-db-analyticalstore/TestRecord.md +++ b/quickstart/101-cosmos-db-analyticalstore/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:48 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:28 UTC Success: true diff --git a/quickstart/101-cosmos-db-autoscale/TestRecord.md b/quickstart/101-cosmos-db-autoscale/TestRecord.md index 4a02f1ae5..a328086ed 100644 --- a/quickstart/101-cosmos-db-autoscale/TestRecord.md +++ b/quickstart/101-cosmos-db-autoscale/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:42 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:19 UTC Success: true diff --git a/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md b/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md index 0946dc43d..e8a404195 100644 --- a/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md +++ b/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:43 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:17 UTC Success: true diff --git a/quickstart/101-cosmos-db-free-tier/TestRecord.md b/quickstart/101-cosmos-db-free-tier/TestRecord.md index 950ec0eac..6d6fec102 100644 --- a/quickstart/101-cosmos-db-free-tier/TestRecord.md +++ b/quickstart/101-cosmos-db-free-tier/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:41 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:16 UTC Success: true diff --git a/quickstart/101-cosmos-db-manualscale/TestRecord.md b/quickstart/101-cosmos-db-manualscale/TestRecord.md index e43743e1b..2f230e0e0 100644 --- a/quickstart/101-cosmos-db-manualscale/TestRecord.md +++ b/quickstart/101-cosmos-db-manualscale/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:40 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:15 UTC Success: true diff --git a/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md b/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md index d0d26d87b..72d5693b1 100644 --- a/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md +++ b/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:41 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:15 UTC Success: true diff --git a/quickstart/101-databricks-cmk-dbfs/TestRecord.md b/quickstart/101-databricks-cmk-dbfs/TestRecord.md index 44cdd4868..db958bdf8 100644 --- a/quickstart/101-databricks-cmk-dbfs/TestRecord.md +++ b/quickstart/101-databricks-cmk-dbfs/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:34 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:06 UTC Success: true diff --git a/quickstart/101-ddos-protection-plan/TestRecord.md b/quickstart/101-ddos-protection-plan/TestRecord.md index b3cd58403..92809cb81 100644 --- a/quickstart/101-ddos-protection-plan/TestRecord.md +++ b/quickstart/101-ddos-protection-plan/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:27 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:46 UTC Success: true diff --git a/quickstart/101-devtest-labs/TestRecord.md b/quickstart/101-devtest-labs/TestRecord.md index a53b1fd11..bdb74456b 100644 --- a/quickstart/101-devtest-labs/TestRecord.md +++ b/quickstart/101-devtest-labs/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:45 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:18 UTC Success: true diff --git a/quickstart/101-dns_zone/TestRecord.md b/quickstart/101-dns_zone/TestRecord.md index 4519027ce..360466fd0 100644 --- a/quickstart/101-dns_zone/TestRecord.md +++ b/quickstart/101-dns_zone/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:26 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:58 UTC Success: true diff --git a/quickstart/101-firewall-standard/TestRecord.md b/quickstart/101-firewall-standard/TestRecord.md index da6f1f43a..a554951a4 100644 --- a/quickstart/101-firewall-standard/TestRecord.md +++ b/quickstart/101-firewall-standard/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:44 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:16 UTC Success: true diff --git a/quickstart/101-front-door-classic/TestRecord.md b/quickstart/101-front-door-classic/TestRecord.md index de0163d35..b8b5c84a9 100644 --- a/quickstart/101-front-door-classic/TestRecord.md +++ b/quickstart/101-front-door-classic/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:28 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:01 UTC Success: true diff --git a/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md b/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md index 40c21ef45..1f36bb3de 100644 --- a/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md +++ b/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md @@ -1,3 +1,21 @@ +## 24 Dec 23 00:30 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 17 Dec 23 01:04 UTC Success: true diff --git a/quickstart/101-front-door-standard-premium/TestRecord.md b/quickstart/101-front-door-standard-premium/TestRecord.md index b17e44032..d7e3b022f 100644 --- a/quickstart/101-front-door-standard-premium/TestRecord.md +++ b/quickstart/101-front-door-standard-premium/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:27 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:58 UTC Success: true diff --git a/quickstart/101-key-vault-key/TestRecord.md b/quickstart/101-key-vault-key/TestRecord.md index 5f30383ee..ef129c7dc 100644 --- a/quickstart/101-key-vault-key/TestRecord.md +++ b/quickstart/101-key-vault-key/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:26 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:58 UTC Success: true diff --git a/quickstart/101-machine-learning/TestRecord.md b/quickstart/101-machine-learning/TestRecord.md index ddc717900..3e3d08b79 100644 --- a/quickstart/101-machine-learning/TestRecord.md +++ b/quickstart/101-machine-learning/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:29 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:03 UTC Success: true diff --git a/quickstart/101-managed-instance/TestRecord.md b/quickstart/101-managed-instance/TestRecord.md index ccec3da9c..685208bf1 100644 --- a/quickstart/101-managed-instance/TestRecord.md +++ b/quickstart/101-managed-instance/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:50 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 02:28 UTC Success: true diff --git a/quickstart/101-managed-lustre-create-filesystem/TestRecord.md b/quickstart/101-managed-lustre-create-filesystem/TestRecord.md index 0ca29bec5..d6fd554ae 100644 --- a/quickstart/101-managed-lustre-create-filesystem/TestRecord.md +++ b/quickstart/101-managed-lustre-create-filesystem/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:38 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:14 UTC Success: true diff --git a/quickstart/101-notification-hub/TestRecord.md b/quickstart/101-notification-hub/TestRecord.md index 691a82b03..b45f78fbe 100644 --- a/quickstart/101-notification-hub/TestRecord.md +++ b/quickstart/101-notification-hub/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:24 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:57 UTC Success: true diff --git a/quickstart/101-resource-group/TestRecord.md b/quickstart/101-resource-group/TestRecord.md index a03425322..cb264c90e 100644 --- a/quickstart/101-resource-group/TestRecord.md +++ b/quickstart/101-resource-group/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:20 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:52 UTC Success: true diff --git a/quickstart/101-sql-database/TestRecord.md b/quickstart/101-sql-database/TestRecord.md index 80ae67777..7a50bb4bb 100644 --- a/quickstart/101-sql-database/TestRecord.md +++ b/quickstart/101-sql-database/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:24 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:56 UTC Success: true diff --git a/quickstart/101-sql-security-alert-policy/TestRecord.md b/quickstart/101-sql-security-alert-policy/TestRecord.md index 58e2092e9..65f755874 100644 --- a/quickstart/101-sql-security-alert-policy/TestRecord.md +++ b/quickstart/101-sql-security-alert-policy/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:22 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:53 UTC Success: true diff --git a/quickstart/101-storage-account-with-static-website/TestRecord.md b/quickstart/101-storage-account-with-static-website/TestRecord.md index bf8803319..05025ccb4 100644 --- a/quickstart/101-storage-account-with-static-website/TestRecord.md +++ b/quickstart/101-storage-account-with-static-website/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:19 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:52 UTC Success: true diff --git a/quickstart/101-storage-static-website/TestRecord.md b/quickstart/101-storage-static-website/TestRecord.md index 8074c3f6f..6e005c5dd 100644 --- a/quickstart/101-storage-static-website/TestRecord.md +++ b/quickstart/101-storage-static-website/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:20 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 17 Dec 23 00:51 UTC Success: true diff --git a/quickstart/101-stream-analytics-job/TestRecord.md b/quickstart/101-stream-analytics-job/TestRecord.md index f9500ccee..84db56379 100644 --- a/quickstart/101-stream-analytics-job/TestRecord.md +++ b/quickstart/101-stream-analytics-job/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:19 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:51 UTC Success: true diff --git a/quickstart/101-synapse/TestRecord.md b/quickstart/101-synapse/TestRecord.md index 65559a2db..70824dc4a 100644 --- a/quickstart/101-synapse/TestRecord.md +++ b/quickstart/101-synapse/TestRecord.md @@ -1,3 +1,21 @@ +## 24 Dec 23 00:27 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/http v3.4.1 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:58 UTC Success: true diff --git a/quickstart/101-traffic-manager-external-endpoint/TestRecord.md b/quickstart/101-traffic-manager-external-endpoint/TestRecord.md index 50f8497c5..6472156ef 100644 --- a/quickstart/101-traffic-manager-external-endpoint/TestRecord.md +++ b/quickstart/101-traffic-manager-external-endpoint/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:19 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:50 UTC Success: true diff --git a/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md b/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md index d6b3b3dc2..6393dfc56 100644 --- a/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md +++ b/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md @@ -1,3 +1,22 @@ +## 24 Dec 23 00:25 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.56.0 ++ provider registry.terraform.io/hashicorp/null v3.2.2 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/time v0.10.0 + +### Error + + + +--- + ## 17 Dec 23 00:53 UTC Success: true diff --git a/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md b/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md index 77d87d06f..71f69783c 100644 --- a/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md +++ b/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:24 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:52 UTC Success: true diff --git a/quickstart/101-vm-auto-shutdown/TestRecord.md b/quickstart/101-vm-auto-shutdown/TestRecord.md index 269316d86..3ade21c87 100644 --- a/quickstart/101-vm-auto-shutdown/TestRecord.md +++ b/quickstart/101-vm-auto-shutdown/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:19 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:27 UTC Success: true diff --git a/quickstart/101-vm-cluster-linux/TestRecord.md b/quickstart/101-vm-cluster-linux/TestRecord.md index d700d781b..5ee1ec9a6 100644 --- a/quickstart/101-vm-cluster-linux/TestRecord.md +++ b/quickstart/101-vm-cluster-linux/TestRecord.md @@ -1,3 +1,21 @@ +## 24 Dec 23 01:21 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.11.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:50 UTC Success: true diff --git a/quickstart/101-vm-cluster-windows/TestRecord.md b/quickstart/101-vm-cluster-windows/TestRecord.md index 1508ec97b..e49eed4bf 100644 --- a/quickstart/101-vm-cluster-windows/TestRecord.md +++ b/quickstart/101-vm-cluster-windows/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:19 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:50 UTC Success: true diff --git a/quickstart/101-vm-with-infrastructure/TestRecord.md b/quickstart/101-vm-with-infrastructure/TestRecord.md index 39fcf9611..28db53b94 100644 --- a/quickstart/101-vm-with-infrastructure/TestRecord.md +++ b/quickstart/101-vm-with-infrastructure/TestRecord.md @@ -1,3 +1,21 @@ +## 24 Dec 23 01:19 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.11.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:49 UTC Success: true diff --git a/quickstart/101-web-app-linux-container/TestRecord.md b/quickstart/101-web-app-linux-container/TestRecord.md index 39aa6a693..8ee883d87 100644 --- a/quickstart/101-web-app-linux-container/TestRecord.md +++ b/quickstart/101-web-app-linux-container/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:16 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:45 UTC Success: true diff --git a/quickstart/101-web-app-linux-java/TestRecord.md b/quickstart/101-web-app-linux-java/TestRecord.md index e0cd93e65..36bd17f8f 100644 --- a/quickstart/101-web-app-linux-java/TestRecord.md +++ b/quickstart/101-web-app-linux-java/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:15 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:45 UTC Success: true diff --git a/quickstart/101-web-app-windows-dotnet/TestRecord.md b/quickstart/101-web-app-windows-dotnet/TestRecord.md index aafc281fb..2a1e83857 100644 --- a/quickstart/101-web-app-windows-dotnet/TestRecord.md +++ b/quickstart/101-web-app-windows-dotnet/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:15 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:44 UTC Success: true diff --git a/quickstart/101-windows-vm-with-iis-server/TestRecord.md b/quickstart/101-windows-vm-with-iis-server/TestRecord.md index 73daf67e9..c8601b0f8 100644 --- a/quickstart/101-windows-vm-with-iis-server/TestRecord.md +++ b/quickstart/101-windows-vm-with-iis-server/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:24 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:53 UTC Success: true diff --git a/quickstart/201-aks-acr-identity/TestRecord.md b/quickstart/201-aks-acr-identity/TestRecord.md index 005de5414..e2749e1b3 100644 --- a/quickstart/201-aks-acr-identity/TestRecord.md +++ b/quickstart/201-aks-acr-identity/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:16 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:45 UTC Success: true diff --git a/quickstart/201-aks-helm/TestRecord.md b/quickstart/201-aks-helm/TestRecord.md index ff224a529..19b9b3426 100644 --- a/quickstart/201-aks-helm/TestRecord.md +++ b/quickstart/201-aks-helm/TestRecord.md @@ -1,3 +1,21 @@ +## 24 Dec 23 01:13 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/helm v2.9.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:44 UTC Success: true diff --git a/quickstart/201-aks-log-analytics/TestRecord.md b/quickstart/201-aks-log-analytics/TestRecord.md index 8eed7dc2a..90e6681bf 100644 --- a/quickstart/201-aks-log-analytics/TestRecord.md +++ b/quickstart/201-aks-log-analytics/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:13 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 17 Dec 23 00:43 UTC Success: true diff --git a/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md b/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md index 0277d72e5..93696f958 100644 --- a/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md +++ b/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md @@ -1,3 +1,21 @@ +## 24 Dec 23 01:11 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/kubernetes v2.24.0 ++ provider registry.terraform.io/hashicorp/random v3.3.2 + +### Error + + + +--- + ## 17 Dec 23 00:43 UTC Success: true diff --git a/quickstart/201-azfw-multi-addresses/TestRecord.md b/quickstart/201-azfw-multi-addresses/TestRecord.md index 1b7a753cf..66151bfd9 100644 --- a/quickstart/201-azfw-multi-addresses/TestRecord.md +++ b/quickstart/201-azfw-multi-addresses/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:21 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:52 UTC Success: true diff --git a/quickstart/201-azfw-with-avzones/TestRecord.md b/quickstart/201-azfw-with-avzones/TestRecord.md index b39f9b45d..eac9d0aa5 100644 --- a/quickstart/201-azfw-with-avzones/TestRecord.md +++ b/quickstart/201-azfw-with-avzones/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:18 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:56 UTC Success: true diff --git a/quickstart/201-azfw-with-ipgroups/TestRecord.md b/quickstart/201-azfw-with-ipgroups/TestRecord.md index 6e93214c9..ac5d616cd 100644 --- a/quickstart/201-azfw-with-ipgroups/TestRecord.md +++ b/quickstart/201-azfw-with-ipgroups/TestRecord.md @@ -1,3 +1,21 @@ +## 24 Dec 23 01:17 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.11.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:49 UTC Success: true diff --git a/quickstart/201-azfw-with-secure-hub/TestRecord.md b/quickstart/201-azfw-with-secure-hub/TestRecord.md index 49cf245cd..210de14ff 100644 --- a/quickstart/201-azfw-with-secure-hub/TestRecord.md +++ b/quickstart/201-azfw-with-secure-hub/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:47 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 01:21 UTC Success: true diff --git a/quickstart/201-azure-pipelines-ci-cd/TestRecord.md b/quickstart/201-azure-pipelines-ci-cd/TestRecord.md index 14619b89a..036392afb 100644 --- a/quickstart/201-azure-pipelines-ci-cd/TestRecord.md +++ b/quickstart/201-azure-pipelines-ci-cd/TestRecord.md @@ -1,3 +1,18 @@ +## 24 Dec 23 01:01 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 + +### Error + + + +--- + ## 17 Dec 23 00:33 UTC Success: true diff --git a/quickstart/201-confidential-os-disk/TestRecord.md b/quickstart/201-confidential-os-disk/TestRecord.md index 349571f1a..ac67a7f2f 100644 --- a/quickstart/201-confidential-os-disk/TestRecord.md +++ b/quickstart/201-confidential-os-disk/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:01 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:34 UTC Success: true diff --git a/quickstart/201-confidential-vm/TestRecord.md b/quickstart/201-confidential-vm/TestRecord.md index bfc62d872..611ea4aa5 100644 --- a/quickstart/201-confidential-vm/TestRecord.md +++ b/quickstart/201-confidential-vm/TestRecord.md @@ -1,3 +1,21 @@ +## 24 Dec 23 01:04 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 17 Dec 23 00:37 UTC Success: true diff --git a/quickstart/201-confidential-vmss/TestRecord.md b/quickstart/201-confidential-vmss/TestRecord.md index 07dad933c..d0999ffea 100644 --- a/quickstart/201-confidential-vmss/TestRecord.md +++ b/quickstart/201-confidential-vmss/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:01 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:35 UTC Success: true diff --git a/quickstart/201-function-app-key-vault-ref/TestRecord.md b/quickstart/201-function-app-key-vault-ref/TestRecord.md index 146e9ebf4..7e4a76459 100644 --- a/quickstart/201-function-app-key-vault-ref/TestRecord.md +++ b/quickstart/201-function-app-key-vault-ref/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:59 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:33 UTC Success: true diff --git a/quickstart/201-function-app/TestRecord.md b/quickstart/201-function-app/TestRecord.md index 4ad6854e7..99551ede1 100644 --- a/quickstart/201-function-app/TestRecord.md +++ b/quickstart/201-function-app/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:56 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:31 UTC Success: true diff --git a/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md b/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md index f670c46ae..89151ff85 100644 --- a/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md +++ b/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:01 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:34 UTC Success: true diff --git a/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md b/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md index 747e20a5e..554578ca1 100644 --- a/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md +++ b/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 01:14 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:47 UTC Success: true diff --git a/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md b/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md index 4d4021fc4..2d7bc4cb4 100644 --- a/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md +++ b/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md @@ -1,3 +1,22 @@ +## 24 Dec 23 01:04 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.11.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/time v0.9.1 + +### Error + + + +--- + ## 17 Dec 23 00:34 UTC Success: true diff --git a/quickstart/201-machine-learning-moderately-secure/TestRecord.md b/quickstart/201-machine-learning-moderately-secure/TestRecord.md index c79df99af..ffe6de85b 100644 --- a/quickstart/201-machine-learning-moderately-secure/TestRecord.md +++ b/quickstart/201-machine-learning-moderately-secure/TestRecord.md @@ -1,3 +1,21 @@ +## 24 Dec 23 00:50 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/orobix/azureml v0.0.5 + +### Error + + + +--- + ## 17 Dec 23 00:25 UTC Success: false diff --git a/quickstart/201-mysql-fs-db/TestRecord.md b/quickstart/201-mysql-fs-db/TestRecord.md index 84397901a..9fd5ab3ef 100644 --- a/quickstart/201-mysql-fs-db/TestRecord.md +++ b/quickstart/201-mysql-fs-db/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:55 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:42 UTC Success: true diff --git a/quickstart/201-postgresql-fs-db/TestRecord.md b/quickstart/201-postgresql-fs-db/TestRecord.md index 6c5cb063d..2cbf0cf4a 100644 --- a/quickstart/201-postgresql-fs-db/TestRecord.md +++ b/quickstart/201-postgresql-fs-db/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:57 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:33 UTC Success: true diff --git a/quickstart/201-synapse-secure/TestRecord.md b/quickstart/201-synapse-secure/TestRecord.md index a307b2b99..a3a90c9cd 100644 --- a/quickstart/201-synapse-secure/TestRecord.md +++ b/quickstart/201-synapse-secure/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:47 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.32.0 ++ provider registry.terraform.io/hashicorp/http v3.4.1 + +### Error + + + +--- + ## 17 Dec 23 00:24 UTC Success: false diff --git a/quickstart/201-vm-disk-encryption-extension/TestRecord.md b/quickstart/201-vm-disk-encryption-extension/TestRecord.md index dfff944c0..84c153f73 100644 --- a/quickstart/201-vm-disk-encryption-extension/TestRecord.md +++ b/quickstart/201-vm-disk-encryption-extension/TestRecord.md @@ -1,3 +1,22 @@ +## 24 Dec 23 00:55 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/local v2.3.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 17 Dec 23 00:32 UTC Success: true diff --git a/quickstart/201-vmss-disk-encryption-extension/TestRecord.md b/quickstart/201-vmss-disk-encryption-extension/TestRecord.md index cea5f7a8e..4728f1a98 100644 --- a/quickstart/201-vmss-disk-encryption-extension/TestRecord.md +++ b/quickstart/201-vmss-disk-encryption-extension/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:54 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:33 UTC Success: true diff --git a/quickstart/201-vmss-jumpbox/TestRecord.md b/quickstart/201-vmss-jumpbox/TestRecord.md index bacab1339..75df69d78 100644 --- a/quickstart/201-vmss-jumpbox/TestRecord.md +++ b/quickstart/201-vmss-jumpbox/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:50 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:29 UTC Success: true diff --git a/quickstart/201-web-app-docker-acr/TestRecord.md b/quickstart/201-web-app-docker-acr/TestRecord.md index 3f59deec3..227ec025c 100644 --- a/quickstart/201-web-app-docker-acr/TestRecord.md +++ b/quickstart/201-web-app-docker-acr/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:20 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:26 UTC Success: true diff --git a/quickstart/201-web-app-postgres-keyvault/TestRecord.md b/quickstart/201-web-app-postgres-keyvault/TestRecord.md index f670f6714..5dfa6c219 100644 --- a/quickstart/201-web-app-postgres-keyvault/TestRecord.md +++ b/quickstart/201-web-app-postgres-keyvault/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:23 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:29 UTC Success: true diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md b/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md index 9795cc86b..10f51c2d6 100644 --- a/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md @@ -1,3 +1,35 @@ +## 24 Dec 23 00:17 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... + +Initializing provider plugins... +- Finding latest version of telemaco019/azureml... +- Finding latest version of hashicorp/random... +- Finding hashicorp/azurerm versions matching "2.78.0"... +- Installing telemaco019/azureml v0.0.5... +- Installing hashicorp/random v3.6.0... +- Installed hashicorp/random v3.6.0 (signed by HashiCorp) +- Installing hashicorp/azurerm v2.78.0... +- Installed hashicorp/azurerm v2.78.0 (signed by HashiCorp) + +Error: Failed to install provider + +Error while installing telemaco019/azureml v0.0.5: checksum list has no +SHA-256 hash for +"https://github.com/orobix/terraform-provider-azureml/releases/download/v0.0.5/terraform-provider-azureml_0.0.5_linux_amd64.zip" + + +--- + ## 17 Dec 23 00:23 UTC Success: false diff --git a/quickstart/301-aks-enterprise/TestRecord.md b/quickstart/301-aks-enterprise/TestRecord.md index aecc95175..f0f321e49 100644 --- a/quickstart/301-aks-enterprise/TestRecord.md +++ b/quickstart/301-aks-enterprise/TestRecord.md @@ -1,3 +1,296 @@ +## 24 Dec 23 00:17 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... +Terraform encountered problems during initialisation, including problems +with the configuration, described below. + +The Terraform configuration must be valid before initialization so that +Terraform can determine which modules and providers need to be installed. + +Warning: Quoted references are deprecated + + on aks.tf line 6, in resource "azurerm_kubernetes_cluster" "default": + 6: depends_on = ["azurerm_role_assignment.default"] + +In this context, references are expected literally rather than in quotes. +Terraform 0.11 and earlier required quotes, but quoted references are now +deprecated and will be removed in a future version of Terraform. Remove the +quotes surrounding this reference to silence this warning. + +(and 5 more similar warnings elsewhere) + + +Error: Invalid quoted type constraints + + on variables.tf line 3, in variable "name": + 3: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 3, in variable "name": + 3: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 9, in variable "environment": + 9: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 9, in variable "environment": + 9: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 17, in variable "location": + 17: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 17, in variable "location": + 17: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 25, in variable "node_count": + 25: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 25, in variable "node_count": + 25: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 31, in variable "node_type": + 31: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 31, in variable "node_type": + 31: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 37, in variable "node_os": + 37: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 37, in variable "node_os": + 37: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 43, in variable "dns_prefix": + 43: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 43, in variable "dns_prefix": + 43: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 51, in variable "vnet_address_space": + 51: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 51, in variable "vnet_address_space": + 51: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 57, in variable "vnet_aks_subnet_space": + 57: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 57, in variable "vnet_aks_subnet_space": + 57: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 63, in variable "vnet_ingress_subnet_space": + 63: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 63, in variable "vnet_ingress_subnet_space": + 63: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 69, in variable "vnet_gateway_subnet_space": + 69: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 69, in variable "vnet_gateway_subnet_space": + 69: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 75, in variable "ingress_load_balancer_ip": + 75: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 75, in variable "ingress_load_balancer_ip": + 75: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 82, in variable "gateway_instance_count": + 82: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 82, in variable "gateway_instance_count": + 82: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +--- + ## 17 Dec 23 00:23 UTC Success: false diff --git a/quickstart/301-aks-private-cluster/TestRecord.md b/quickstart/301-aks-private-cluster/TestRecord.md index c26d16793..c856e518c 100644 --- a/quickstart/301-aks-private-cluster/TestRecord.md +++ b/quickstart/301-aks-private-cluster/TestRecord.md @@ -1,3 +1,20 @@ +## 24 Dec 23 00:18 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/null v3.2.2 + +### Error + + + +--- + ## 17 Dec 23 00:23 UTC Success: false diff --git a/quickstart/301-hub-spoke/TestRecord.md b/quickstart/301-hub-spoke/TestRecord.md index 08c83a041..9ec763276 100644 --- a/quickstart/301-hub-spoke/TestRecord.md +++ b/quickstart/301-hub-spoke/TestRecord.md @@ -1,3 +1,19 @@ +## 24 Dec 23 00:18 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 + +### Error + + + +--- + ## 17 Dec 23 00:23 UTC Success: false diff --git a/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md b/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md index 7c6d5ac0e..8fc90be03 100644 --- a/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md +++ b/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md @@ -1,3 +1,35 @@ +## 24 Dec 23 00:17 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... + +Initializing provider plugins... +- Finding hashicorp/azurerm versions matching "2.78.0"... +- Finding latest version of telemaco019/azureml... +- Finding latest version of hashicorp/random... +- Installing hashicorp/random v3.6.0... +- Installed hashicorp/random v3.6.0 (signed by HashiCorp) +- Installing hashicorp/azurerm v2.78.0... +- Installed hashicorp/azurerm v2.78.0 (signed by HashiCorp) +- Installing telemaco019/azureml v0.0.5... + +Error: Failed to install provider + +Error while installing telemaco019/azureml v0.0.5: checksum list has no +SHA-256 hash for +"https://github.com/orobix/terraform-provider-azureml/releases/download/v0.0.5/terraform-provider-azureml_0.0.5_linux_amd64.zip" + + +--- + ## 17 Dec 23 00:23 UTC Success: false diff --git a/quickstart/301-service-fabric-apim/TestRecord.md b/quickstart/301-service-fabric-apim/TestRecord.md index 8257027bc..50419db80 100644 --- a/quickstart/301-service-fabric-apim/TestRecord.md +++ b/quickstart/301-service-fabric-apim/TestRecord.md @@ -1,3 +1,21 @@ +## 24 Dec 23 00:18 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.47.0 ++ provider registry.terraform.io/hashicorp/azurerm v1.36.1 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:23 UTC Success: false diff --git a/quickstart/301-service-fabric/TestRecord.md b/quickstart/301-service-fabric/TestRecord.md index 87a67ae5a..9c209e629 100644 --- a/quickstart/301-service-fabric/TestRecord.md +++ b/quickstart/301-service-fabric/TestRecord.md @@ -1,3 +1,21 @@ +## 24 Dec 23 00:18 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.47.0 ++ provider registry.terraform.io/hashicorp/azurerm v1.36.1 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 17 Dec 23 00:23 UTC Success: false diff --git a/quickstart/template/TestRecord.md b/quickstart/template/TestRecord.md index d4f856008..a67f4a398 100644 --- a/quickstart/template/TestRecord.md +++ b/quickstart/template/TestRecord.md @@ -1,3 +1,19 @@ +## 24 Dec 23 00:17 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.56.0 + +### Error + + + +--- + ## 17 Dec 23 00:23 UTC Success: false From c0b2f8ea118c8b98a1edd46171a8e988b004d783 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 31 Dec 2023 02:13:52 +0000 Subject: [PATCH 44/64] Update TestRecord --- .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-application-gateway/TestRecord.md | 17 + .../101-attestation-provider/TestRecord.md | 18 ++ .../TestRecord.md | 18 ++ .../101-azapi-lab-services/TestRecord.md | 17 + .../101-azfw-with-fwpolicy/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-azure-cognitive-search/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../101-azure-virtual-desktop/TestRecord.md | 18 ++ .../TestRecord.md | 17 + .../101-cdn-with-custom-origin/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-aad-rbac/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-autoscale/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-cosmos-db-free-tier/TestRecord.md | 17 + .../101-cosmos-db-manualscale/TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-databricks-cmk-dbfs/TestRecord.md | 17 + .../101-ddos-protection-plan/TestRecord.md | 17 + quickstart/101-devtest-labs/TestRecord.md | 17 + quickstart/101-dns_zone/TestRecord.md | 17 + .../101-firewall-standard/TestRecord.md | 17 + .../101-front-door-classic/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../TestRecord.md | 17 + quickstart/101-key-vault-key/TestRecord.md | 17 + quickstart/101-machine-learning/TestRecord.md | 17 + quickstart/101-managed-instance/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/101-notification-hub/TestRecord.md | 17 + quickstart/101-resource-group/TestRecord.md | 17 + quickstart/101-sql-database/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../101-storage-static-website/TestRecord.md | 17 + .../101-stream-analytics-job/TestRecord.md | 17 + quickstart/101-synapse/TestRecord.md | 18 ++ .../TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 17 + quickstart/101-vm-auto-shutdown/TestRecord.md | 17 + quickstart/101-vm-cluster-linux/TestRecord.md | 18 ++ .../101-vm-cluster-windows/TestRecord.md | 17 + .../101-vm-with-infrastructure/TestRecord.md | 18 ++ .../101-web-app-linux-container/TestRecord.md | 17 + .../101-web-app-linux-java/TestRecord.md | 17 + .../101-web-app-windows-dotnet/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/201-aks-acr-identity/TestRecord.md | 17 + quickstart/201-aks-helm/TestRecord.md | 18 ++ .../201-aks-log-analytics/TestRecord.md | 17 + .../TestRecord.md | 18 ++ .../201-azfw-multi-addresses/TestRecord.md | 17 + .../201-azfw-with-avzones/TestRecord.md | 17 + .../201-azfw-with-ipgroups/TestRecord.md | 18 ++ .../201-azfw-with-secure-hub/TestRecord.md | 17 + .../201-azure-pipelines-ci-cd/TestRecord.md | 15 + .../201-confidential-os-disk/TestRecord.md | 17 + quickstart/201-confidential-vm/TestRecord.md | 18 ++ .../201-confidential-vmss/TestRecord.md | 17 + .../TestRecord.md | 17 + quickstart/201-function-app/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 18 ++ quickstart/201-mysql-fs-db/TestRecord.md | 17 + quickstart/201-postgresql-fs-db/TestRecord.md | 17 + quickstart/201-synapse-secure/TestRecord.md | 17 + .../TestRecord.md | 19 ++ .../TestRecord.md | 17 + quickstart/201-vmss-jumpbox/TestRecord.md | 17 + .../201-web-app-docker-acr/TestRecord.md | 17 + .../TestRecord.md | 17 + .../TestRecord.md | 32 ++ quickstart/301-aks-enterprise/TestRecord.md | 293 ++++++++++++++++++ .../301-aks-private-cluster/TestRecord.md | 17 + quickstart/301-hub-spoke/TestRecord.md | 16 + .../TestRecord.md | 32 ++ .../301-service-fabric-apim/TestRecord.md | 18 ++ quickstart/301-service-fabric/TestRecord.md | 18 ++ quickstart/template/TestRecord.md | 16 + 86 files changed, 1785 insertions(+) diff --git a/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md b/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md index e8657ff6a..53c7b1ca6 100644 --- a/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md +++ b/quickstart/101-aci-linuxcontainer-public-ip/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:19 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:19 UTC Success: true diff --git a/quickstart/101-analysis-services-create/TestRecord.md b/quickstart/101-analysis-services-create/TestRecord.md index e1f425aaf..77872c1d1 100644 --- a/quickstart/101-analysis-services-create/TestRecord.md +++ b/quickstart/101-analysis-services-create/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:13 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:47 UTC Success: true diff --git a/quickstart/101-application-gateway/TestRecord.md b/quickstart/101-application-gateway/TestRecord.md index 78045a04c..f696d4bd7 100644 --- a/quickstart/101-application-gateway/TestRecord.md +++ b/quickstart/101-application-gateway/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:34 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:01 UTC Success: true diff --git a/quickstart/101-attestation-provider/TestRecord.md b/quickstart/101-attestation-provider/TestRecord.md index 2aa70cfb2..70bc738b0 100644 --- a/quickstart/101-attestation-provider/TestRecord.md +++ b/quickstart/101-attestation-provider/TestRecord.md @@ -1,3 +1,21 @@ +## 31 Dec 23 01:11 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 24 Dec 23 00:45 UTC Success: true diff --git a/quickstart/101-azapi-eventhub-network-rules/TestRecord.md b/quickstart/101-azapi-eventhub-network-rules/TestRecord.md index 56b20e695..8f2317a3e 100644 --- a/quickstart/101-azapi-eventhub-network-rules/TestRecord.md +++ b/quickstart/101-azapi-eventhub-network-rules/TestRecord.md @@ -1,3 +1,21 @@ +## 31 Dec 23 01:13 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v0.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 ++ provider registry.terraform.io/hashicorp/random v3.1.2 + +### Error + + + +--- + ## 24 Dec 23 00:46 UTC Success: true diff --git a/quickstart/101-azapi-lab-services/TestRecord.md b/quickstart/101-azapi-lab-services/TestRecord.md index d63be380a..fbc454346 100644 --- a/quickstart/101-azapi-lab-services/TestRecord.md +++ b/quickstart/101-azapi-lab-services/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:10 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v0.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 + +### Error + + + +--- + ## 24 Dec 23 00:44 UTC Success: false diff --git a/quickstart/101-azfw-with-fwpolicy/TestRecord.md b/quickstart/101-azfw-with-fwpolicy/TestRecord.md index dde8522a0..f183e695a 100644 --- a/quickstart/101-azfw-with-fwpolicy/TestRecord.md +++ b/quickstart/101-azfw-with-fwpolicy/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:29 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:05 UTC Success: true diff --git a/quickstart/101-azure-api-management-create/TestRecord.md b/quickstart/101-azure-api-management-create/TestRecord.md index b0bba0836..006d65cea 100644 --- a/quickstart/101-azure-api-management-create/TestRecord.md +++ b/quickstart/101-azure-api-management-create/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:35 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:08 UTC Success: true diff --git a/quickstart/101-azure-cognitive-search/TestRecord.md b/quickstart/101-azure-cognitive-search/TestRecord.md index 620435833..ca2f6b151 100644 --- a/quickstart/101-azure-cognitive-search/TestRecord.md +++ b/quickstart/101-azure-cognitive-search/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:09 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:42 UTC Success: true diff --git a/quickstart/101-azure-virtual-desktop-anf/TestRecord.md b/quickstart/101-azure-virtual-desktop-anf/TestRecord.md index fa9a2ee1b..df8cea953 100644 --- a/quickstart/101-azure-virtual-desktop-anf/TestRecord.md +++ b/quickstart/101-azure-virtual-desktop-anf/TestRecord.md @@ -1,3 +1,21 @@ +## 31 Dec 23 01:08 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.47.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:41 UTC Success: false diff --git a/quickstart/101-azure-virtual-desktop/TestRecord.md b/quickstart/101-azure-virtual-desktop/TestRecord.md index 89d275066..197ac725b 100644 --- a/quickstart/101-azure-virtual-desktop/TestRecord.md +++ b/quickstart/101-azure-virtual-desktop/TestRecord.md @@ -1,3 +1,21 @@ +## 31 Dec 23 01:08 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.47.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:41 UTC Success: false diff --git a/quickstart/101-batch-account-with-storage/TestRecord.md b/quickstart/101-batch-account-with-storage/TestRecord.md index 4b80e66ff..ddd86f7ec 100644 --- a/quickstart/101-batch-account-with-storage/TestRecord.md +++ b/quickstart/101-batch-account-with-storage/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:08 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:43 UTC Success: true diff --git a/quickstart/101-cdn-with-custom-origin/TestRecord.md b/quickstart/101-cdn-with-custom-origin/TestRecord.md index d1a6b7911..9a0a12697 100644 --- a/quickstart/101-cdn-with-custom-origin/TestRecord.md +++ b/quickstart/101-cdn-with-custom-origin/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:13 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:47 UTC Success: true diff --git a/quickstart/101-cognitive-services-account/TestRecord.md b/quickstart/101-cognitive-services-account/TestRecord.md index c4c8e800a..4cb5658a0 100644 --- a/quickstart/101-cognitive-services-account/TestRecord.md +++ b/quickstart/101-cognitive-services-account/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:06 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:41 UTC Success: true diff --git a/quickstart/101-cosmos-db-aad-rbac/TestRecord.md b/quickstart/101-cosmos-db-aad-rbac/TestRecord.md index 67e946915..3fc82f967 100644 --- a/quickstart/101-cosmos-db-aad-rbac/TestRecord.md +++ b/quickstart/101-cosmos-db-aad-rbac/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:19 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:52 UTC Success: true diff --git a/quickstart/101-cosmos-db-analyticalstore/TestRecord.md b/quickstart/101-cosmos-db-analyticalstore/TestRecord.md index 3928c72d7..6c7f5ad8f 100644 --- a/quickstart/101-cosmos-db-analyticalstore/TestRecord.md +++ b/quickstart/101-cosmos-db-analyticalstore/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:18 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:48 UTC Success: true diff --git a/quickstart/101-cosmos-db-autoscale/TestRecord.md b/quickstart/101-cosmos-db-autoscale/TestRecord.md index a328086ed..72d1aabd8 100644 --- a/quickstart/101-cosmos-db-autoscale/TestRecord.md +++ b/quickstart/101-cosmos-db-autoscale/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:11 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:42 UTC Success: true diff --git a/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md b/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md index e8a404195..1a6b5b7fe 100644 --- a/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md +++ b/quickstart/101-cosmos-db-azure-container-instance/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:08 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:43 UTC Success: true diff --git a/quickstart/101-cosmos-db-free-tier/TestRecord.md b/quickstart/101-cosmos-db-free-tier/TestRecord.md index 6d6fec102..0a6c73df0 100644 --- a/quickstart/101-cosmos-db-free-tier/TestRecord.md +++ b/quickstart/101-cosmos-db-free-tier/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:06 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:41 UTC Success: true diff --git a/quickstart/101-cosmos-db-manualscale/TestRecord.md b/quickstart/101-cosmos-db-manualscale/TestRecord.md index 2f230e0e0..716d83015 100644 --- a/quickstart/101-cosmos-db-manualscale/TestRecord.md +++ b/quickstart/101-cosmos-db-manualscale/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:04 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:40 UTC Success: true diff --git a/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md b/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md index 72d5693b1..40985b464 100644 --- a/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md +++ b/quickstart/101-cosmos-db-serverside-functionality/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:05 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:41 UTC Success: true diff --git a/quickstart/101-databricks-cmk-dbfs/TestRecord.md b/quickstart/101-databricks-cmk-dbfs/TestRecord.md index db958bdf8..2003c88cb 100644 --- a/quickstart/101-databricks-cmk-dbfs/TestRecord.md +++ b/quickstart/101-databricks-cmk-dbfs/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:58 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:34 UTC Success: true diff --git a/quickstart/101-ddos-protection-plan/TestRecord.md b/quickstart/101-ddos-protection-plan/TestRecord.md index 92809cb81..9972caec7 100644 --- a/quickstart/101-ddos-protection-plan/TestRecord.md +++ b/quickstart/101-ddos-protection-plan/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:51 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:27 UTC Success: true diff --git a/quickstart/101-devtest-labs/TestRecord.md b/quickstart/101-devtest-labs/TestRecord.md index bdb74456b..b3bf0dd97 100644 --- a/quickstart/101-devtest-labs/TestRecord.md +++ b/quickstart/101-devtest-labs/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:09 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:45 UTC Success: true diff --git a/quickstart/101-dns_zone/TestRecord.md b/quickstart/101-dns_zone/TestRecord.md index 360466fd0..766d1a500 100644 --- a/quickstart/101-dns_zone/TestRecord.md +++ b/quickstart/101-dns_zone/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:50 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:26 UTC Success: true diff --git a/quickstart/101-firewall-standard/TestRecord.md b/quickstart/101-firewall-standard/TestRecord.md index a554951a4..88e9a4361 100644 --- a/quickstart/101-firewall-standard/TestRecord.md +++ b/quickstart/101-firewall-standard/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:09 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:44 UTC Success: true diff --git a/quickstart/101-front-door-classic/TestRecord.md b/quickstart/101-front-door-classic/TestRecord.md index b8b5c84a9..53a0f13aa 100644 --- a/quickstart/101-front-door-classic/TestRecord.md +++ b/quickstart/101-front-door-classic/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:51 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:28 UTC Success: true diff --git a/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md b/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md index 1f36bb3de..bfe431f7b 100644 --- a/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md +++ b/quickstart/101-front-door-premium-storage-blobs-private-link/TestRecord.md @@ -1,3 +1,21 @@ +## 31 Dec 23 00:53 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.1.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 24 Dec 23 00:30 UTC Success: true diff --git a/quickstart/101-front-door-standard-premium/TestRecord.md b/quickstart/101-front-door-standard-premium/TestRecord.md index d7e3b022f..077f2e133 100644 --- a/quickstart/101-front-door-standard-premium/TestRecord.md +++ b/quickstart/101-front-door-standard-premium/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:49 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:27 UTC Success: true diff --git a/quickstart/101-key-vault-key/TestRecord.md b/quickstart/101-key-vault-key/TestRecord.md index ef129c7dc..3cfa675a1 100644 --- a/quickstart/101-key-vault-key/TestRecord.md +++ b/quickstart/101-key-vault-key/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:49 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:26 UTC Success: true diff --git a/quickstart/101-machine-learning/TestRecord.md b/quickstart/101-machine-learning/TestRecord.md index 3e3d08b79..c73a9958a 100644 --- a/quickstart/101-machine-learning/TestRecord.md +++ b/quickstart/101-machine-learning/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:54 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:29 UTC Success: true diff --git a/quickstart/101-managed-instance/TestRecord.md b/quickstart/101-managed-instance/TestRecord.md index 685208bf1..8b18fda19 100644 --- a/quickstart/101-managed-instance/TestRecord.md +++ b/quickstart/101-managed-instance/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 02:13 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:50 UTC Success: true diff --git a/quickstart/101-managed-lustre-create-filesystem/TestRecord.md b/quickstart/101-managed-lustre-create-filesystem/TestRecord.md index d6fd554ae..8442966e1 100644 --- a/quickstart/101-managed-lustre-create-filesystem/TestRecord.md +++ b/quickstart/101-managed-lustre-create-filesystem/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:05 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:38 UTC Success: true diff --git a/quickstart/101-notification-hub/TestRecord.md b/quickstart/101-notification-hub/TestRecord.md index b45f78fbe..c894740e7 100644 --- a/quickstart/101-notification-hub/TestRecord.md +++ b/quickstart/101-notification-hub/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:50 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:24 UTC Success: true diff --git a/quickstart/101-resource-group/TestRecord.md b/quickstart/101-resource-group/TestRecord.md index cb264c90e..2218cad90 100644 --- a/quickstart/101-resource-group/TestRecord.md +++ b/quickstart/101-resource-group/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:45 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:20 UTC Success: true diff --git a/quickstart/101-sql-database/TestRecord.md b/quickstart/101-sql-database/TestRecord.md index 7a50bb4bb..1a2a2e97e 100644 --- a/quickstart/101-sql-database/TestRecord.md +++ b/quickstart/101-sql-database/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:49 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:24 UTC Success: true diff --git a/quickstart/101-sql-security-alert-policy/TestRecord.md b/quickstart/101-sql-security-alert-policy/TestRecord.md index 65f755874..9e86f379d 100644 --- a/quickstart/101-sql-security-alert-policy/TestRecord.md +++ b/quickstart/101-sql-security-alert-policy/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:47 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:22 UTC Success: true diff --git a/quickstart/101-storage-account-with-static-website/TestRecord.md b/quickstart/101-storage-account-with-static-website/TestRecord.md index 05025ccb4..9586c6c88 100644 --- a/quickstart/101-storage-account-with-static-website/TestRecord.md +++ b/quickstart/101-storage-account-with-static-website/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:45 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:19 UTC Success: true diff --git a/quickstart/101-storage-static-website/TestRecord.md b/quickstart/101-storage-static-website/TestRecord.md index 6e005c5dd..8c65db33b 100644 --- a/quickstart/101-storage-static-website/TestRecord.md +++ b/quickstart/101-storage-static-website/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:44 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 24 Dec 23 00:20 UTC Success: true diff --git a/quickstart/101-stream-analytics-job/TestRecord.md b/quickstart/101-stream-analytics-job/TestRecord.md index 84db56379..4527495b7 100644 --- a/quickstart/101-stream-analytics-job/TestRecord.md +++ b/quickstart/101-stream-analytics-job/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:43 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:19 UTC Success: true diff --git a/quickstart/101-synapse/TestRecord.md b/quickstart/101-synapse/TestRecord.md index 70824dc4a..9cd45dde0 100644 --- a/quickstart/101-synapse/TestRecord.md +++ b/quickstart/101-synapse/TestRecord.md @@ -1,3 +1,21 @@ +## 31 Dec 23 00:26 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/http v3.4.1 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:27 UTC Success: true diff --git a/quickstart/101-traffic-manager-external-endpoint/TestRecord.md b/quickstart/101-traffic-manager-external-endpoint/TestRecord.md index 6472156ef..e101d0ff4 100644 --- a/quickstart/101-traffic-manager-external-endpoint/TestRecord.md +++ b/quickstart/101-traffic-manager-external-endpoint/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:18 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:19 UTC Success: true diff --git a/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md b/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md index 6393dfc56..d2c0dd510 100644 --- a/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md +++ b/quickstart/101-virtual-network-manager-create-management-group-scope/TestRecord.md @@ -1,3 +1,22 @@ +## 31 Dec 23 00:24 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.56.0 ++ provider registry.terraform.io/hashicorp/null v3.2.2 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/time v0.10.0 + +### Error + + + +--- + ## 24 Dec 23 00:25 UTC Success: true diff --git a/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md b/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md index 71f69783c..452da5a0e 100644 --- a/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md +++ b/quickstart/101-virtual-network-manager-create-mesh/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:23 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:24 UTC Success: true diff --git a/quickstart/101-vm-auto-shutdown/TestRecord.md b/quickstart/101-vm-auto-shutdown/TestRecord.md index 3ade21c87..f99273917 100644 --- a/quickstart/101-vm-auto-shutdown/TestRecord.md +++ b/quickstart/101-vm-auto-shutdown/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:45 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:19 UTC Success: true diff --git a/quickstart/101-vm-cluster-linux/TestRecord.md b/quickstart/101-vm-cluster-linux/TestRecord.md index 5ee1ec9a6..0f1985a2f 100644 --- a/quickstart/101-vm-cluster-linux/TestRecord.md +++ b/quickstart/101-vm-cluster-linux/TestRecord.md @@ -1,3 +1,21 @@ +## 31 Dec 23 00:46 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.11.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:21 UTC Success: true diff --git a/quickstart/101-vm-cluster-windows/TestRecord.md b/quickstart/101-vm-cluster-windows/TestRecord.md index e49eed4bf..42da8e712 100644 --- a/quickstart/101-vm-cluster-windows/TestRecord.md +++ b/quickstart/101-vm-cluster-windows/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:45 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:19 UTC Success: true diff --git a/quickstart/101-vm-with-infrastructure/TestRecord.md b/quickstart/101-vm-with-infrastructure/TestRecord.md index 28db53b94..694816c95 100644 --- a/quickstart/101-vm-with-infrastructure/TestRecord.md +++ b/quickstart/101-vm-with-infrastructure/TestRecord.md @@ -1,3 +1,21 @@ +## 31 Dec 23 00:44 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.11.0 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:19 UTC Success: true diff --git a/quickstart/101-web-app-linux-container/TestRecord.md b/quickstart/101-web-app-linux-container/TestRecord.md index 8ee883d87..90b061373 100644 --- a/quickstart/101-web-app-linux-container/TestRecord.md +++ b/quickstart/101-web-app-linux-container/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:41 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:16 UTC Success: true diff --git a/quickstart/101-web-app-linux-java/TestRecord.md b/quickstart/101-web-app-linux-java/TestRecord.md index 36bd17f8f..8ac59b521 100644 --- a/quickstart/101-web-app-linux-java/TestRecord.md +++ b/quickstart/101-web-app-linux-java/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:40 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:15 UTC Success: true diff --git a/quickstart/101-web-app-windows-dotnet/TestRecord.md b/quickstart/101-web-app-windows-dotnet/TestRecord.md index 2a1e83857..31ee62f5e 100644 --- a/quickstart/101-web-app-windows-dotnet/TestRecord.md +++ b/quickstart/101-web-app-windows-dotnet/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:38 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:15 UTC Success: true diff --git a/quickstart/101-windows-vm-with-iis-server/TestRecord.md b/quickstart/101-windows-vm-with-iis-server/TestRecord.md index c8601b0f8..58cba4714 100644 --- a/quickstart/101-windows-vm-with-iis-server/TestRecord.md +++ b/quickstart/101-windows-vm-with-iis-server/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:43 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:24 UTC Success: true diff --git a/quickstart/201-aks-acr-identity/TestRecord.md b/quickstart/201-aks-acr-identity/TestRecord.md index e2749e1b3..ccdf8496e 100644 --- a/quickstart/201-aks-acr-identity/TestRecord.md +++ b/quickstart/201-aks-acr-identity/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:40 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:16 UTC Success: true diff --git a/quickstart/201-aks-helm/TestRecord.md b/quickstart/201-aks-helm/TestRecord.md index 19b9b3426..6272b0a52 100644 --- a/quickstart/201-aks-helm/TestRecord.md +++ b/quickstart/201-aks-helm/TestRecord.md @@ -1,3 +1,21 @@ +## 31 Dec 23 00:40 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/helm v2.9.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:13 UTC Success: true diff --git a/quickstart/201-aks-log-analytics/TestRecord.md b/quickstart/201-aks-log-analytics/TestRecord.md index 90e6681bf..080dffd92 100644 --- a/quickstart/201-aks-log-analytics/TestRecord.md +++ b/quickstart/201-aks-log-analytics/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:40 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.4.3 + +### Error + + + +--- + ## 24 Dec 23 01:13 UTC Success: true diff --git a/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md b/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md index 93696f958..259afea95 100644 --- a/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md +++ b/quickstart/201-aks-rbac-dashboard-admin/TestRecord.md @@ -1,3 +1,21 @@ +## 31 Dec 23 00:37 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/kubernetes v2.24.0 ++ provider registry.terraform.io/hashicorp/random v3.3.2 + +### Error + + + +--- + ## 24 Dec 23 01:11 UTC Success: true diff --git a/quickstart/201-azfw-multi-addresses/TestRecord.md b/quickstart/201-azfw-multi-addresses/TestRecord.md index 66151bfd9..b066cf4c9 100644 --- a/quickstart/201-azfw-multi-addresses/TestRecord.md +++ b/quickstart/201-azfw-multi-addresses/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:44 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:21 UTC Success: true diff --git a/quickstart/201-azfw-with-avzones/TestRecord.md b/quickstart/201-azfw-with-avzones/TestRecord.md index eac9d0aa5..3a1804c71 100644 --- a/quickstart/201-azfw-with-avzones/TestRecord.md +++ b/quickstart/201-azfw-with-avzones/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:48 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:18 UTC Success: true diff --git a/quickstart/201-azfw-with-ipgroups/TestRecord.md b/quickstart/201-azfw-with-ipgroups/TestRecord.md index ac5d616cd..672c02021 100644 --- a/quickstart/201-azfw-with-ipgroups/TestRecord.md +++ b/quickstart/201-azfw-with-ipgroups/TestRecord.md @@ -1,3 +1,21 @@ +## 31 Dec 23 00:44 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.11.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:17 UTC Success: true diff --git a/quickstart/201-azfw-with-secure-hub/TestRecord.md b/quickstart/201-azfw-with-secure-hub/TestRecord.md index 210de14ff..4f700cc64 100644 --- a/quickstart/201-azfw-with-secure-hub/TestRecord.md +++ b/quickstart/201-azfw-with-secure-hub/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 01:15 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:47 UTC Success: true diff --git a/quickstart/201-azure-pipelines-ci-cd/TestRecord.md b/quickstart/201-azure-pipelines-ci-cd/TestRecord.md index 036392afb..a07de8256 100644 --- a/quickstart/201-azure-pipelines-ci-cd/TestRecord.md +++ b/quickstart/201-azure-pipelines-ci-cd/TestRecord.md @@ -1,3 +1,18 @@ +## 31 Dec 23 00:27 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 + +### Error + + + +--- + ## 24 Dec 23 01:01 UTC Success: true diff --git a/quickstart/201-confidential-os-disk/TestRecord.md b/quickstart/201-confidential-os-disk/TestRecord.md index ac67a7f2f..443956dfd 100644 --- a/quickstart/201-confidential-os-disk/TestRecord.md +++ b/quickstart/201-confidential-os-disk/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:28 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:01 UTC Success: true diff --git a/quickstart/201-confidential-vm/TestRecord.md b/quickstart/201-confidential-vm/TestRecord.md index 611ea4aa5..84c80d075 100644 --- a/quickstart/201-confidential-vm/TestRecord.md +++ b/quickstart/201-confidential-vm/TestRecord.md @@ -1,3 +1,21 @@ +## 31 Dec 23 00:32 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 24 Dec 23 01:04 UTC Success: true diff --git a/quickstart/201-confidential-vmss/TestRecord.md b/quickstart/201-confidential-vmss/TestRecord.md index d0999ffea..0f52fc616 100644 --- a/quickstart/201-confidential-vmss/TestRecord.md +++ b/quickstart/201-confidential-vmss/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:31 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:01 UTC Success: true diff --git a/quickstart/201-function-app-key-vault-ref/TestRecord.md b/quickstart/201-function-app-key-vault-ref/TestRecord.md index 7e4a76459..f10e4af4d 100644 --- a/quickstart/201-function-app-key-vault-ref/TestRecord.md +++ b/quickstart/201-function-app-key-vault-ref/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:28 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:59 UTC Success: true diff --git a/quickstart/201-function-app/TestRecord.md b/quickstart/201-function-app/TestRecord.md index 99551ede1..26a59b7a1 100644 --- a/quickstart/201-function-app/TestRecord.md +++ b/quickstart/201-function-app/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:26 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:56 UTC Success: true diff --git a/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md b/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md index 89151ff85..01f85736e 100644 --- a/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md +++ b/quickstart/201-iot-hub-with-device-provisioning-service/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:30 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:01 UTC Success: true diff --git a/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md b/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md index 554578ca1..c4336c0f1 100644 --- a/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md +++ b/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:44 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 01:14 UTC Success: true diff --git a/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md b/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md index 2d7bc4cb4..2d5eb70dd 100644 --- a/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md +++ b/quickstart/201-k8s-cluster-with-tf-and-aks/TestRecord.md @@ -1,3 +1,22 @@ +## 31 Dec 23 00:29 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/azure/azapi v1.11.0 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/time v0.9.1 + +### Error + + + +--- + ## 24 Dec 23 01:04 UTC Success: true diff --git a/quickstart/201-machine-learning-moderately-secure/TestRecord.md b/quickstart/201-machine-learning-moderately-secure/TestRecord.md index ffe6de85b..f4adbd796 100644 --- a/quickstart/201-machine-learning-moderately-secure/TestRecord.md +++ b/quickstart/201-machine-learning-moderately-secure/TestRecord.md @@ -1,3 +1,21 @@ +## 31 Dec 23 00:20 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.0.2 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/orobix/azureml v0.0.5 + +### Error + + + +--- + ## 24 Dec 23 00:50 UTC Success: false diff --git a/quickstart/201-mysql-fs-db/TestRecord.md b/quickstart/201-mysql-fs-db/TestRecord.md index 9fd5ab3ef..ff519449a 100644 --- a/quickstart/201-mysql-fs-db/TestRecord.md +++ b/quickstart/201-mysql-fs-db/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:26 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:55 UTC Success: false diff --git a/quickstart/201-postgresql-fs-db/TestRecord.md b/quickstart/201-postgresql-fs-db/TestRecord.md index 2cbf0cf4a..875e7a247 100644 --- a/quickstart/201-postgresql-fs-db/TestRecord.md +++ b/quickstart/201-postgresql-fs-db/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:28 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:57 UTC Success: true diff --git a/quickstart/201-synapse-secure/TestRecord.md b/quickstart/201-synapse-secure/TestRecord.md index a3a90c9cd..cfdc1a517 100644 --- a/quickstart/201-synapse-secure/TestRecord.md +++ b/quickstart/201-synapse-secure/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:19 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.32.0 ++ provider registry.terraform.io/hashicorp/http v3.4.1 + +### Error + + + +--- + ## 24 Dec 23 00:47 UTC Success: false diff --git a/quickstart/201-vm-disk-encryption-extension/TestRecord.md b/quickstart/201-vm-disk-encryption-extension/TestRecord.md index 84c153f73..e75c5cccf 100644 --- a/quickstart/201-vm-disk-encryption-extension/TestRecord.md +++ b/quickstart/201-vm-disk-encryption-extension/TestRecord.md @@ -1,3 +1,22 @@ +## 31 Dec 23 00:27 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/local v2.3.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/hashicorp/tls v4.0.4 + +### Error + + + +--- + ## 24 Dec 23 00:55 UTC Success: true diff --git a/quickstart/201-vmss-disk-encryption-extension/TestRecord.md b/quickstart/201-vmss-disk-encryption-extension/TestRecord.md index 4728f1a98..c72d94a61 100644 --- a/quickstart/201-vmss-disk-encryption-extension/TestRecord.md +++ b/quickstart/201-vmss-disk-encryption-extension/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:27 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:54 UTC Success: true diff --git a/quickstart/201-vmss-jumpbox/TestRecord.md b/quickstart/201-vmss-jumpbox/TestRecord.md index 75df69d78..548e22971 100644 --- a/quickstart/201-vmss-jumpbox/TestRecord.md +++ b/quickstart/201-vmss-jumpbox/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:23 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:50 UTC Success: true diff --git a/quickstart/201-web-app-docker-acr/TestRecord.md b/quickstart/201-web-app-docker-acr/TestRecord.md index 227ec025c..863349dd8 100644 --- a/quickstart/201-web-app-docker-acr/TestRecord.md +++ b/quickstart/201-web-app-docker-acr/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:20 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:20 UTC Success: true diff --git a/quickstart/201-web-app-postgres-keyvault/TestRecord.md b/quickstart/201-web-app-postgres-keyvault/TestRecord.md index 5dfa6c219..1d46ec581 100644 --- a/quickstart/201-web-app-postgres-keyvault/TestRecord.md +++ b/quickstart/201-web-app-postgres-keyvault/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:22 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v3.85.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:23 UTC Success: true diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md b/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md index 10f51c2d6..929351712 100644 --- a/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md @@ -1,3 +1,35 @@ +## 31 Dec 23 00:18 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... + +Initializing provider plugins... +- Finding latest version of telemaco019/azureml... +- Finding latest version of hashicorp/random... +- Finding hashicorp/azurerm versions matching "2.78.0"... +- Installing telemaco019/azureml v0.0.5... +- Installing hashicorp/random v3.6.0... +- Installed hashicorp/random v3.6.0 (signed by HashiCorp) +- Installing hashicorp/azurerm v2.78.0... +- Installed hashicorp/azurerm v2.78.0 (signed by HashiCorp) + +Error: Failed to install provider + +Error while installing telemaco019/azureml v0.0.5: checksum list has no +SHA-256 hash for +"https://github.com/orobix/terraform-provider-azureml/releases/download/v0.0.5/terraform-provider-azureml_0.0.5_linux_amd64.zip" + + +--- + ## 24 Dec 23 00:17 UTC Success: false diff --git a/quickstart/301-aks-enterprise/TestRecord.md b/quickstart/301-aks-enterprise/TestRecord.md index f0f321e49..6568ead11 100644 --- a/quickstart/301-aks-enterprise/TestRecord.md +++ b/quickstart/301-aks-enterprise/TestRecord.md @@ -1,3 +1,296 @@ +## 31 Dec 23 00:17 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... +Terraform encountered problems during initialisation, including problems +with the configuration, described below. + +The Terraform configuration must be valid before initialization so that +Terraform can determine which modules and providers need to be installed. + +Warning: Quoted references are deprecated + + on aks.tf line 6, in resource "azurerm_kubernetes_cluster" "default": + 6: depends_on = ["azurerm_role_assignment.default"] + +In this context, references are expected literally rather than in quotes. +Terraform 0.11 and earlier required quotes, but quoted references are now +deprecated and will be removed in a future version of Terraform. Remove the +quotes surrounding this reference to silence this warning. + +(and 5 more similar warnings elsewhere) + + +Error: Invalid quoted type constraints + + on variables.tf line 3, in variable "name": + 3: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 3, in variable "name": + 3: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 9, in variable "environment": + 9: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 9, in variable "environment": + 9: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 17, in variable "location": + 17: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 17, in variable "location": + 17: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 25, in variable "node_count": + 25: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 25, in variable "node_count": + 25: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 31, in variable "node_type": + 31: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 31, in variable "node_type": + 31: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 37, in variable "node_os": + 37: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 37, in variable "node_os": + 37: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 43, in variable "dns_prefix": + 43: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 43, in variable "dns_prefix": + 43: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 51, in variable "vnet_address_space": + 51: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 51, in variable "vnet_address_space": + 51: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 57, in variable "vnet_aks_subnet_space": + 57: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 57, in variable "vnet_aks_subnet_space": + 57: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 63, in variable "vnet_ingress_subnet_space": + 63: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 63, in variable "vnet_ingress_subnet_space": + 63: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 69, in variable "vnet_gateway_subnet_space": + 69: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 69, in variable "vnet_gateway_subnet_space": + 69: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 75, in variable "ingress_load_balancer_ip": + 75: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 75, in variable "ingress_load_balancer_ip": + 75: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 82, in variable "gateway_instance_count": + 82: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +Error: Invalid quoted type constraints + + on variables.tf line 82, in variable "gateway_instance_count": + 82: type = "string" + +Terraform 0.11 and earlier required type constraints to be given in quotes, +but that form is now deprecated and will be removed in a future version of +Terraform. Remove the quotes around "string". + + +--- + ## 24 Dec 23 00:17 UTC Success: false diff --git a/quickstart/301-aks-private-cluster/TestRecord.md b/quickstart/301-aks-private-cluster/TestRecord.md index c856e518c..344359fbf 100644 --- a/quickstart/301-aks-private-cluster/TestRecord.md +++ b/quickstart/301-aks-private-cluster/TestRecord.md @@ -1,3 +1,20 @@ +## 31 Dec 23 00:18 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/null v3.2.2 + +### Error + + + +--- + ## 24 Dec 23 00:18 UTC Success: false diff --git a/quickstart/301-hub-spoke/TestRecord.md b/quickstart/301-hub-spoke/TestRecord.md index 9ec763276..cc9bcb877 100644 --- a/quickstart/301-hub-spoke/TestRecord.md +++ b/quickstart/301-hub-spoke/TestRecord.md @@ -1,3 +1,19 @@ +## 31 Dec 23 00:17 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 + +### Error + + + +--- + ## 24 Dec 23 00:18 UTC Success: false diff --git a/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md b/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md index 8fc90be03..f74eba2c7 100644 --- a/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md +++ b/quickstart/301-machine-learning-hub-spoke-secure/TestRecord.md @@ -1,3 +1,35 @@ +## 31 Dec 23 00:17 UTC + +Success: false + +### Versions + + + +### Error + + +Initializing the backend... + +Initializing provider plugins... +- Finding latest version of hashicorp/random... +- Finding hashicorp/azurerm versions matching "2.78.0"... +- Finding latest version of telemaco019/azureml... +- Installing hashicorp/random v3.6.0... +- Installed hashicorp/random v3.6.0 (signed by HashiCorp) +- Installing hashicorp/azurerm v2.78.0... +- Installed hashicorp/azurerm v2.78.0 (signed by HashiCorp) +- Installing telemaco019/azureml v0.0.5... + +Error: Failed to install provider + +Error while installing telemaco019/azureml v0.0.5: checksum list has no +SHA-256 hash for +"https://github.com/orobix/terraform-provider-azureml/releases/download/v0.0.5/terraform-provider-azureml_0.0.5_linux_amd64.zip" + + +--- + ## 24 Dec 23 00:17 UTC Success: false diff --git a/quickstart/301-service-fabric-apim/TestRecord.md b/quickstart/301-service-fabric-apim/TestRecord.md index 50419db80..e81b03d81 100644 --- a/quickstart/301-service-fabric-apim/TestRecord.md +++ b/quickstart/301-service-fabric-apim/TestRecord.md @@ -1,3 +1,21 @@ +## 31 Dec 23 00:17 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.47.0 ++ provider registry.terraform.io/hashicorp/azurerm v1.36.1 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:18 UTC Success: false diff --git a/quickstart/301-service-fabric/TestRecord.md b/quickstart/301-service-fabric/TestRecord.md index 9c209e629..e0e51b914 100644 --- a/quickstart/301-service-fabric/TestRecord.md +++ b/quickstart/301-service-fabric/TestRecord.md @@ -1,3 +1,21 @@ +## 31 Dec 23 00:17 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azuread v2.47.0 ++ provider registry.terraform.io/hashicorp/azurerm v1.36.1 ++ provider registry.terraform.io/hashicorp/random v3.6.0 + +### Error + + + +--- + ## 24 Dec 23 00:18 UTC Success: false diff --git a/quickstart/template/TestRecord.md b/quickstart/template/TestRecord.md index a67f4a398..177a68549 100644 --- a/quickstart/template/TestRecord.md +++ b/quickstart/template/TestRecord.md @@ -1,3 +1,19 @@ +## 31 Dec 23 00:17 UTC + +Success: false + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.56.0 + +### Error + + + +--- + ## 24 Dec 23 00:17 UTC Success: false From c6c516ed9fbf2b66348c6306d63743d866122c1b Mon Sep 17 00:00:00 2001 From: neil-yechenwei Date: Tue, 14 Nov 2023 15:23:10 +0800 Subject: [PATCH 45/64] Fix Terraform Template --- quickstart/template/main.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/quickstart/template/main.tf b/quickstart/template/main.tf index efea8c200..0083558de 100644 --- a/quickstart/template/main.tf +++ b/quickstart/template/main.tf @@ -1,2 +1,7 @@ # This file should include references to data sources, resources, and modules # required to manage the desired Azure infrastructure. + +resource "azurerm_resource_group" "my_rg" { + name = var.var1 + location = "westeurope" +} From 32e167c179de3f33f028c0458b566eecfde6329d Mon Sep 17 00:00:00 2001 From: neil-yechenwei Date: Wed, 27 Dec 2023 09:17:40 +0800 Subject: [PATCH 46/64] update code --- quickstart/template/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickstart/template/main.tf b/quickstart/template/main.tf index 0083558de..8b3889a10 100644 --- a/quickstart/template/main.tf +++ b/quickstart/template/main.tf @@ -1,7 +1,7 @@ # This file should include references to data sources, resources, and modules # required to manage the desired Azure infrastructure. -resource "azurerm_resource_group" "my_rg" { +resource "azurerm_resource_group" "myrg" { name = var.var1 location = "westeurope" } From cb3d6100e0a5aebd7cf1b40a64fee8e2918b1155 Mon Sep 17 00:00:00 2001 From: neil-yechenwei Date: Wed, 27 Dec 2023 09:42:23 +0800 Subject: [PATCH 47/64] update code --- quickstart/template/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickstart/template/main.tf b/quickstart/template/main.tf index 8b3889a10..0083558de 100644 --- a/quickstart/template/main.tf +++ b/quickstart/template/main.tf @@ -1,7 +1,7 @@ # This file should include references to data sources, resources, and modules # required to manage the desired Azure infrastructure. -resource "azurerm_resource_group" "myrg" { +resource "azurerm_resource_group" "my_rg" { name = var.var1 location = "westeurope" } From 273f40246d5440b463a54e624653029676edfac5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 2 Jan 2024 00:47:29 +0000 Subject: [PATCH 48/64] Update TestRecord --- quickstart/template/TestRecord.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/quickstart/template/TestRecord.md b/quickstart/template/TestRecord.md index 177a68549..791c0bb00 100644 --- a/quickstart/template/TestRecord.md +++ b/quickstart/template/TestRecord.md @@ -1,3 +1,19 @@ +## 30 Dec 23 15:28 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.56.0 + +### Error + + + +--- + ## 31 Dec 23 00:17 UTC Success: false From 2c2775f29984aaca29dff497fbf1bf954fac25e3 Mon Sep 17 00:00:00 2001 From: hezijie Date: Wed, 3 Jan 2024 09:31:15 +0800 Subject: [PATCH 49/64] pin github action versions --- .github/workflows/e2e.yaml | 6 +++--- .github/workflows/pr-check.yaml | 4 ++-- .github/workflows/pr-merged.yaml | 8 ++++---- .github/workflows/weekly-e2e.yaml | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 206990979..aa17e329a 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -14,10 +14,10 @@ jobs: name: acctests steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 #v3.6.0 - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v34 + uses: tj-actions/changed-files@716b1e13042866565e00e85fd4ec490e186c4a2f #v41.0.1 with: dir_names: "true" separator: "," @@ -31,7 +31,7 @@ jobs: export ARM_TENANT_ID=$(az login --identity --username $MSI_ID | jq -r '.[0] | .tenantId') export CHANGED_FOLDERS="${{ steps.changed-files.outputs.all_changed_files }}" docker run --rm -v $(pwd):/src -w /src/test --network=host -e MSI_ID -e ARM_SUBSCRIPTION_ID -e ARM_TENANT_ID -e ARM_USE_MSI=true -e CHANGED_FOLDERS mcr.microsoft.com/azterraform:latest sh -c "go mod tidy && go test -timeout=360m -v ./e2e" - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 #v3.1.3 with: name: TestRecord-${{ github.event.number }} retention-days: 60 diff --git a/.github/workflows/pr-check.yaml b/.github/workflows/pr-check.yaml index 2a7083275..6e041305e 100644 --- a/.github/workflows/pr-check.yaml +++ b/.github/workflows/pr-check.yaml @@ -12,10 +12,10 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 #v3.6.0 - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v34 + uses: tj-actions/changed-files@716b1e13042866565e00e85fd4ec490e186c4a2f #v41.0.1 with: dir_names: "true" separator: "," diff --git a/.github/workflows/pr-merged.yaml b/.github/workflows/pr-merged.yaml index a27f58871..bc3bd4720 100644 --- a/.github/workflows/pr-merged.yaml +++ b/.github/workflows/pr-merged.yaml @@ -15,12 +15,12 @@ jobs: branch=$(curl -s "https://api.github.com/repos/$GITHUB_REPOSITORY" | jq -r '.default_branch') echo "default_branch=$branch" >> $GITHUB_ENV - name: checkout - uses: actions/checkout@v3 - - uses: 8BitJonny/gh-get-current-pr@2.1.0 + uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 #v3.6.0 + - uses: 8BitJonny/gh-get-current-pr@2215326c76d51bfa3f2af0a470f32677f6c0cae9 #2.1.0 id: PR - name: Download artifact id: download-artifact - uses: dawidd6/action-download-artifact@v2 + uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e #v2.28.0 with: github_token: ${{secrets.GITHUB_TOKEN}} workflow: e2e.yaml @@ -32,7 +32,7 @@ jobs: run: | sh scripts/update-test-record.sh - name: Commit & Push changes - uses: actions-js/push@master + uses: actions-js/push@156f2b10c3aa000c44dbe75ea7018f32ae999772 #v1.4 with: github_token: ${{ secrets.GITHUB_TOKEN }} message: 'Update TestRecord' diff --git a/.github/workflows/weekly-e2e.yaml b/.github/workflows/weekly-e2e.yaml index 3db97be57..1241c5061 100644 --- a/.github/workflows/weekly-e2e.yaml +++ b/.github/workflows/weekly-e2e.yaml @@ -12,7 +12,7 @@ jobs: name: crontests steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 #v3.6.0 - name: test all examples continue-on-error: true timeout-minutes: 1440 @@ -29,7 +29,7 @@ jobs: sudo chmod -R a+rwX . sudo find . -type d -exec chmod g+s '{}' + - name: Commit & Push changes - uses: actions-js/push@master + uses: actions-js/push@156f2b10c3aa000c44dbe75ea7018f32ae999772 #v1.4 with: github_token: ${{ secrets.GITHUB_TOKEN }} message: 'Update TestRecord' From 57a6577c0de24a939fc8429d478a22306be2f414 Mon Sep 17 00:00:00 2001 From: neil-yechenwei Date: Tue, 14 Nov 2023 15:44:25 +0800 Subject: [PATCH 50/64] Fix 201-machine-learning-moderately-secure --- .../201-machine-learning-moderately-secure/variables.tf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/quickstart/201-machine-learning-moderately-secure/variables.tf b/quickstart/201-machine-learning-moderately-secure/variables.tf index fb8299d2a..bfedebbfe 100644 --- a/quickstart/201-machine-learning-moderately-secure/variables.tf +++ b/quickstart/201-machine-learning-moderately-secure/variables.tf @@ -1,6 +1,7 @@ variable "name" { type = string description = "Name of the deployment" + default = "examplehost" } variable "environment" { @@ -71,5 +72,6 @@ variable "dsvm_admin_username" { variable "dsvm_host_password" { type = string description = "Password for the admin username of the Data Science VM" + default = "ChangeMe123!" sensitive = true -} \ No newline at end of file +} From a39e09c2d58cf7a4edbe96fcda6ee37e4812bb31 Mon Sep 17 00:00:00 2001 From: neil-yechenwei Date: Thu, 16 Nov 2023 11:10:30 +0800 Subject: [PATCH 51/64] update code --- .../workspace.tf | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/quickstart/201-machine-learning-moderately-secure/workspace.tf b/quickstart/201-machine-learning-moderately-secure/workspace.tf index 7b6ba44af..8e0dc3849 100644 --- a/quickstart/201-machine-learning-moderately-secure/workspace.tf +++ b/quickstart/201-machine-learning-moderately-secure/workspace.tf @@ -6,8 +6,15 @@ resource "azurerm_application_insights" "default" { application_type = "web" } +resource "random_string" "kv_prefix" { + length = 4 + upper = false + special = false + numeric = false +} + resource "azurerm_key_vault" "default" { - name = "kv-${var.name}-${var.environment}" + name = "kv-${random_string.kv_prefix.result}-${var.environment}" location = azurerm_resource_group.default.location resource_group_name = azurerm_resource_group.default.name tenant_id = data.azurerm_client_config.current.tenant_id @@ -20,8 +27,15 @@ resource "azurerm_key_vault" "default" { } } +resource "random_string" "sa_prefix" { + length = 4 + upper = false + special = false + numeric = false +} + resource "azurerm_storage_account" "default" { - name = "st${var.name}${var.environment}" + name = "st${random_string.sa_prefix.result}${var.environment}" location = azurerm_resource_group.default.location resource_group_name = azurerm_resource_group.default.name account_tier = "Standard" From 9259270d0cfcbe611a951a8af41e9bd1706934ea Mon Sep 17 00:00:00 2001 From: hezijie Date: Tue, 2 Jan 2024 15:05:51 +0800 Subject: [PATCH 52/64] try to make 202-mlmsev testable --- .../compute.tf | 2 +- .../main.tf | 9 ++- .../prequisite/main.tf | 61 +++++++++++++++++++ .../prequisite/outputs.tf | 52 ++++++++++++++++ .../prequisite/variables.tf | 5 ++ .../prequisite/versions.tf | 18 ++++++ .../terragrunt.hcl | 34 +++++++++++ .../variables.tf | 1 + .../workspace.tf | 14 ++--- test/e2e/quickstart_test.go | 31 ++++++++-- 10 files changed, 213 insertions(+), 14 deletions(-) create mode 100644 quickstart/202-machine-learning-moderately-secure-existing-VNet/prequisite/main.tf create mode 100644 quickstart/202-machine-learning-moderately-secure-existing-VNet/prequisite/outputs.tf create mode 100644 quickstart/202-machine-learning-moderately-secure-existing-VNet/prequisite/variables.tf create mode 100644 quickstart/202-machine-learning-moderately-secure-existing-VNet/prequisite/versions.tf create mode 100644 quickstart/202-machine-learning-moderately-secure-existing-VNet/terragrunt.hcl diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/compute.tf b/quickstart/202-machine-learning-moderately-secure-existing-VNet/compute.tf index c8ddab0f9..9a66eda34 100644 --- a/quickstart/202-machine-learning-moderately-secure-existing-VNet/compute.tf +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/compute.tf @@ -3,7 +3,7 @@ resource "random_string" "ci_prefix" { length = 8 upper = false special = false - number = false + numeric = false } # Compute instance diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/main.tf b/quickstart/202-machine-learning-moderately-secure-existing-VNet/main.tf index 8b59d811d..d74d3adf1 100644 --- a/quickstart/202-machine-learning-moderately-secure-existing-VNet/main.tf +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/main.tf @@ -4,11 +4,16 @@ terraform { required_providers { azurerm = { source = "hashicorp/azurerm" - version = "=2.78.0" + version = ">=2.78.0, <3.0" } azureml = { - source = "registry.terraform.io/Telemaco019/azureml" + source = "registry.terraform.io/orobix/azureml" + version = "0.0.5" + } + random = { + source = "hashicorp/random" + version = "3.6.0" } } } diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/prequisite/main.tf b/quickstart/202-machine-learning-moderately-secure-existing-VNet/prequisite/main.tf new file mode 100644 index 000000000..89fc543c3 --- /dev/null +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/prequisite/main.tf @@ -0,0 +1,61 @@ +resource "random_string" "suffix" { + length = 6 + special = false + upper = false +} + +resource "azurerm_resource_group" "network" { + location = var.location + name = "rg-202-mlmsev-network-${random_string.suffix.result}" +} + +resource "azurerm_virtual_network" "vnet" { + address_space = ["192.168.0.0/16"] + location = azurerm_resource_group.network.location + name = "202-mlmsev-vnet" + resource_group_name = azurerm_resource_group.network.name +} + +locals { + subnet_names = [ + "training", + "aks", + "ml", + ] +} + +resource "azurerm_subnet" "subnet" { + count = length(local.subnet_names) + + address_prefixes = [cidrsubnet("192.168.0.0/16", 8, count.index)] + name = local.subnet_names[count.index] + resource_group_name = azurerm_resource_group.network.name + virtual_network_name = azurerm_virtual_network.vnet.name +} + +locals { + private_dns_names = toset([ + "privatelink.api.azureml.ms", + "privatelink.azurecr.io", + "privatelink.notebooks.azure.net", + "privatelink.blob.core.windows.net", + "privatelink.file.core.windows.net", + "privatelink.vaultcore.azure.net", + ]) +} + +resource "azurerm_private_dns_zone" "private_dns_zone" { + for_each = local.private_dns_names + + name = each.value + resource_group_name = azurerm_resource_group.network.name +} + +resource "azurerm_private_dns_zone_virtual_network_link" "link" { + for_each = local.private_dns_names + + name = each.value + private_dns_zone_name = azurerm_private_dns_zone.private_dns_zone[each.value].name + resource_group_name = azurerm_resource_group.network.name + virtual_network_id = azurerm_virtual_network.vnet.id +} \ No newline at end of file diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/prequisite/outputs.tf b/quickstart/202-machine-learning-moderately-secure-existing-VNet/prequisite/outputs.tf new file mode 100644 index 000000000..262b366bc --- /dev/null +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/prequisite/outputs.tf @@ -0,0 +1,52 @@ +output "aks_subnet_name" { + description = "Name of the existing aks subnet" + value = azurerm_subnet.subnet[index(local.subnet_names, "aks")].name +} + +output "ml_subnet_name" { + description = "Name of the existing ML workspace subnet" + value = azurerm_subnet.subnet[index(local.subnet_names, "ml")].name +} + +output "privatelink_api_azureml_ms_resource_id" { + description = "Resource ID of the existing privatelink.api.azureml.ms private dns zone" + value = azurerm_private_dns_zone.private_dns_zone["privatelink.api.azureml.ms"].id +} + +output "privatelink_azurecr_io_resource_id" { + description = "Resource ID of the existing privatelink.azurecr.io private dns zone" + value = azurerm_private_dns_zone.private_dns_zone["privatelink.azurecr.io"].id +} + +output "privatelink_blob_core_windows_net_resource_id" { + description = "Resource ID of the existing privatelink.blob.core.windows.net private dns zone" + value = azurerm_private_dns_zone.private_dns_zone["privatelink.blob.core.windows.net"].id +} + +output "privatelink_file_core_windows_net_resource_id" { + description = "Resource ID of the existing privatelink.file.core.windows.net private dns zone" + value = azurerm_private_dns_zone.private_dns_zone["privatelink.file.core.windows.net"].id +} + +output "privatelink_notebooks_azure_net_resource_id" { + description = "Resource ID of the existing privatelink.notebooks.azure.net private dns zone" + value = azurerm_private_dns_zone.private_dns_zone["privatelink.notebooks.azure.net"].id +} + +output "privatelink_vaultcore_azure_net_resource_id" { + description = "Resource ID of the existing privatelink.vaultcore.azure.net private dns zone" + value = azurerm_private_dns_zone.private_dns_zone["privatelink.vaultcore.azure.net"].id +} + +output "training_subnet_name" { + description = "Name of the existing training subnet" + value = azurerm_subnet.subnet[index(local.subnet_names, "training")].name +} + +output vnet_name { + value = azurerm_virtual_network.vnet.name +} + +output "resource_group_name" { + value = azurerm_resource_group.network.name +} \ No newline at end of file diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/prequisite/variables.tf b/quickstart/202-machine-learning-moderately-secure-existing-VNet/prequisite/variables.tf new file mode 100644 index 000000000..2a6c1ccca --- /dev/null +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/prequisite/variables.tf @@ -0,0 +1,5 @@ +variable "location" { + type = string + default = "East US" + description = "Location of the resources" +} diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/prequisite/versions.tf b/quickstart/202-machine-learning-moderately-secure-existing-VNet/prequisite/versions.tf new file mode 100644 index 000000000..ba14ecafe --- /dev/null +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/prequisite/versions.tf @@ -0,0 +1,18 @@ +terraform { + required_version = ">=1.0" + + required_providers { + azurerm = { + source = "hashicorp/azurerm" + version = ">=2.78.0, <3.0" + } + random = { + source = "hashicorp/random" + version = "3.6.0" + } + } +} + +provider "azurerm" { + features {} +} \ No newline at end of file diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/terragrunt.hcl b/quickstart/202-machine-learning-moderately-secure-existing-VNet/terragrunt.hcl new file mode 100644 index 000000000..e7835be7d --- /dev/null +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/terragrunt.hcl @@ -0,0 +1,34 @@ +include "network" { + path = "../../quickstart-setup/202-machine-learning-moderately-secure-existing-VNet/terragrunt.hcl" +} + +dependency "network" { + config_path = "../../quickstart-setup/202-machine-learning-moderately-secure-existing-VNet" + mock_outputs = { + vnet_name = "vnet" + resource_group_name = "rg" + training_subnet_name = "training" + aks_subnet_name = "aks" + ml_subnet_name = "ml" + privatelink_api_azureml_ms_resource_id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/zone1" + privatelink_azurecr_io_resource_id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/zone1" + privatelink_notebooks_azure_net_resource_id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/zone1" + privatelink_blob_core_windows_net_resource_id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/zone1" + privatelink_file_core_windows_net_resource_id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/zone1" + privatelink_vaultcore_azure_net_resource_id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/zone1" + } +} + +inputs = { + vnet_name = dependency.network.outputs.vnet_name + vnet_resource_group_name = dependency.network.outputs.resource_group_name + training_subnet_name = dependency.network.outputs.training_subnet_name + aks_subnet_name = dependency.network.outputs.aks_subnet_name + ml_subnet_name = dependency.network.outputs.ml_subnet_name + privatelink_api_azureml_ms_resource_id = dependency.network.outputs.privatelink_api_azureml_ms_resource_id + privatelink_azurecr_io_resource_id = dependency.network.outputs.privatelink_azurecr_io_resource_id + privatelink_notebooks_azure_net_resource_id = dependency.network.outputs.privatelink_notebooks_azure_net_resource_id + privatelink_blob_core_windows_net_resource_id = dependency.network.outputs.privatelink_blob_core_windows_net_resource_id + privatelink_file_core_windows_net_resource_id = dependency.network.outputs.privatelink_file_core_windows_net_resource_id + privatelink_vaultcore_azure_net_resource_id = dependency.network.outputs.privatelink_vaultcore_azure_net_resource_id +} \ No newline at end of file diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/variables.tf b/quickstart/202-machine-learning-moderately-secure-existing-VNet/variables.tf index 6abe1b18a..30c050cf0 100644 --- a/quickstart/202-machine-learning-moderately-secure-existing-VNet/variables.tf +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/variables.tf @@ -1,6 +1,7 @@ variable "name" { type = string description = "Name of the deployment" + default = "202mlmsev" } variable "environment" { diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/workspace.tf b/quickstart/202-machine-learning-moderately-secure-existing-VNet/workspace.tf index 8d7d66c6a..61e591b16 100644 --- a/quickstart/202-machine-learning-moderately-secure-existing-VNet/workspace.tf +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/workspace.tf @@ -21,12 +21,12 @@ resource "azurerm_key_vault" "default" { } resource "azurerm_storage_account" "default" { - name = "st${var.name}${var.environment}" - location = azurerm_resource_group.default.location - resource_group_name = azurerm_resource_group.default.name - account_tier = "Standard" - account_replication_type = "GRS" - allow_nested_items_to_be_public = false + name = "st${var.name}${var.environment}" + location = azurerm_resource_group.default.location + resource_group_name = azurerm_resource_group.default.name + account_tier = "Standard" + account_replication_type = "GRS" + allow_blob_public_access = false network_rules { default_action = "Deny" @@ -150,7 +150,7 @@ resource "azurerm_private_endpoint" "mlw_ple" { subnet_id = data.azurerm_subnet.ml.id private_dns_zone_group { - name = "private-dns-zone-group" + name = "private-dns-zone-group" private_dns_zone_ids = [ var.privatelink_api_azureml_ms_resource_id, var.privatelink_notebooks_azure_net_resource_id diff --git a/test/e2e/quickstart_test.go b/test/e2e/quickstart_test.go index a00e2547e..30142f84b 100644 --- a/test/e2e/quickstart_test.go +++ b/test/e2e/quickstart_test.go @@ -8,18 +8,18 @@ import ( "strings" "testing" + helper "github.com/Azure/terraform-module-test-helper" "github.com/gruntwork-io/terratest/modules/files" "github.com/gruntwork-io/terratest/modules/packer" + "github.com/gruntwork-io/terratest/modules/terraform" test_structure "github.com/gruntwork-io/terratest/modules/test-structure" "github.com/stretchr/testify/require" - - helper "github.com/Azure/terraform-module-test-helper" - "github.com/gruntwork-io/terratest/modules/terraform" ) var speicalTests = map[string]func(*testing.T){ - "quickstart/201-vmss-packer-jumpbox": test201VmssPackerJumpbox, "quickstart/101-virtual-network-manager-create-management-group-scope": test101VirtualNetworkManagerCreateManagementGroupScope, + "quickstart/201-vmss-packer-jumpbox": test201VmssPackerJumpbox, + "quickstart/202-machine-learning-moderately-secure-existing-VNet": Test202machineLearningModeratelySecureExistingVnet, } func Test_Quickstarts(t *testing.T) { @@ -174,6 +174,29 @@ func test101VirtualNetworkManagerCreateManagementGroupScope(t *testing.T) { }, nil) } +func Test202machineLearningModeratelySecureExistingVnet(t *testing.T) { + rootPath := filepath.Join("..", "..") + examplePath := filepath.Join("quickstart", "202-machine-learning-moderately-secure-existing-VNet") + prequistePath := filepath.Join(examplePath, "prequisite") + helper.RunE2ETest(t, rootPath, prequistePath, terraform.Options{}, func(t *testing.T, output helper.TerraformOutput) { + helper.RunE2ETest(t, rootPath, examplePath, terraform.Options{ + Vars: map[string]interface{}{ + "vnet_name": output["vnet_name"], + "vnet_resource_group_name": output["resource_group_name"], + "training_subnet_name": output["training_subnet_name"], + "aks_subnet_name": output["aks_subnet_name"], + "ml_subnet_name": output["ml_subnet_name"], + "privatelink_api_azureml_ms_resource_id": output["privatelink_api_azureml_ms_resource_id"], + "privatelink_azurecr_io_resource_id": output["privatelink_azurecr_io_resource_id"], + "privatelink_notebooks_azure_net_resource_id": output["privatelink_notebooks_azure_net_resource_id"], + "privatelink_blob_core_windows_net_resource_id": output["privatelink_blob_core_windows_net_resource_id"], + "privatelink_file_core_windows_net_resource_id": output["privatelink_file_core_windows_net_resource_id"], + "privatelink_vaultcore_azure_net_resource_id": output["privatelink_vaultcore_azure_net_resource_id"], + }, + }, nil) + }) +} + func removeDuplicates(s []string) []string { m := make(map[string]struct{}) result := []string{} From 5e1d8c38aa8963de708be880923c12473e40e58b Mon Sep 17 00:00:00 2001 From: hezijie Date: Tue, 2 Jan 2024 17:16:01 +0800 Subject: [PATCH 53/64] rename subtest --- test/e2e/quickstart_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/e2e/quickstart_test.go b/test/e2e/quickstart_test.go index 30142f84b..89d83687a 100644 --- a/test/e2e/quickstart_test.go +++ b/test/e2e/quickstart_test.go @@ -18,8 +18,8 @@ import ( var speicalTests = map[string]func(*testing.T){ "quickstart/101-virtual-network-manager-create-management-group-scope": test101VirtualNetworkManagerCreateManagementGroupScope, - "quickstart/201-vmss-packer-jumpbox": test201VmssPackerJumpbox, - "quickstart/202-machine-learning-moderately-secure-existing-VNet": Test202machineLearningModeratelySecureExistingVnet, + "quickstart/201-vmss-packer-jumpbox": test201VmssPackerJumpbox, + "quickstart/202-machine-learning-moderately-secure-existing-VNet": test202machineLearningModeratelySecureExistingVnet, } func Test_Quickstarts(t *testing.T) { @@ -174,7 +174,7 @@ func test101VirtualNetworkManagerCreateManagementGroupScope(t *testing.T) { }, nil) } -func Test202machineLearningModeratelySecureExistingVnet(t *testing.T) { +func test202machineLearningModeratelySecureExistingVnet(t *testing.T) { rootPath := filepath.Join("..", "..") examplePath := filepath.Join("quickstart", "202-machine-learning-moderately-secure-existing-VNet") prequistePath := filepath.Join(examplePath, "prequisite") From 9679e8d47081803c821d5eb2d7ab4179237f3ada Mon Sep 17 00:00:00 2001 From: hezijie Date: Tue, 2 Jan 2024 17:17:48 +0800 Subject: [PATCH 54/64] remove terragrunt config --- .../terragrunt.hcl | 34 ------------------- 1 file changed, 34 deletions(-) delete mode 100644 quickstart/202-machine-learning-moderately-secure-existing-VNet/terragrunt.hcl diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/terragrunt.hcl b/quickstart/202-machine-learning-moderately-secure-existing-VNet/terragrunt.hcl deleted file mode 100644 index e7835be7d..000000000 --- a/quickstart/202-machine-learning-moderately-secure-existing-VNet/terragrunt.hcl +++ /dev/null @@ -1,34 +0,0 @@ -include "network" { - path = "../../quickstart-setup/202-machine-learning-moderately-secure-existing-VNet/terragrunt.hcl" -} - -dependency "network" { - config_path = "../../quickstart-setup/202-machine-learning-moderately-secure-existing-VNet" - mock_outputs = { - vnet_name = "vnet" - resource_group_name = "rg" - training_subnet_name = "training" - aks_subnet_name = "aks" - ml_subnet_name = "ml" - privatelink_api_azureml_ms_resource_id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/zone1" - privatelink_azurecr_io_resource_id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/zone1" - privatelink_notebooks_azure_net_resource_id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/zone1" - privatelink_blob_core_windows_net_resource_id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/zone1" - privatelink_file_core_windows_net_resource_id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/zone1" - privatelink_vaultcore_azure_net_resource_id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/privateDnsZones/zone1" - } -} - -inputs = { - vnet_name = dependency.network.outputs.vnet_name - vnet_resource_group_name = dependency.network.outputs.resource_group_name - training_subnet_name = dependency.network.outputs.training_subnet_name - aks_subnet_name = dependency.network.outputs.aks_subnet_name - ml_subnet_name = dependency.network.outputs.ml_subnet_name - privatelink_api_azureml_ms_resource_id = dependency.network.outputs.privatelink_api_azureml_ms_resource_id - privatelink_azurecr_io_resource_id = dependency.network.outputs.privatelink_azurecr_io_resource_id - privatelink_notebooks_azure_net_resource_id = dependency.network.outputs.privatelink_notebooks_azure_net_resource_id - privatelink_blob_core_windows_net_resource_id = dependency.network.outputs.privatelink_blob_core_windows_net_resource_id - privatelink_file_core_windows_net_resource_id = dependency.network.outputs.privatelink_file_core_windows_net_resource_id - privatelink_vaultcore_azure_net_resource_id = dependency.network.outputs.privatelink_vaultcore_azure_net_resource_id -} \ No newline at end of file From bbaf15cce98d7e017397b80c593cd57860931442 Mon Sep 17 00:00:00 2001 From: hezijie Date: Tue, 2 Jan 2024 17:19:42 +0800 Subject: [PATCH 55/64] Revert "update code" This reverts commit 18087e206bfdb33d6299e6eb53a1f39934249b9c. --- .../workspace.tf | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/quickstart/201-machine-learning-moderately-secure/workspace.tf b/quickstart/201-machine-learning-moderately-secure/workspace.tf index 8e0dc3849..7b6ba44af 100644 --- a/quickstart/201-machine-learning-moderately-secure/workspace.tf +++ b/quickstart/201-machine-learning-moderately-secure/workspace.tf @@ -6,15 +6,8 @@ resource "azurerm_application_insights" "default" { application_type = "web" } -resource "random_string" "kv_prefix" { - length = 4 - upper = false - special = false - numeric = false -} - resource "azurerm_key_vault" "default" { - name = "kv-${random_string.kv_prefix.result}-${var.environment}" + name = "kv-${var.name}-${var.environment}" location = azurerm_resource_group.default.location resource_group_name = azurerm_resource_group.default.name tenant_id = data.azurerm_client_config.current.tenant_id @@ -27,15 +20,8 @@ resource "azurerm_key_vault" "default" { } } -resource "random_string" "sa_prefix" { - length = 4 - upper = false - special = false - numeric = false -} - resource "azurerm_storage_account" "default" { - name = "st${random_string.sa_prefix.result}${var.environment}" + name = "st${var.name}${var.environment}" location = azurerm_resource_group.default.location resource_group_name = azurerm_resource_group.default.name account_tier = "Standard" From cc391fef1f6b628edac3c2365d729fc64dd59089 Mon Sep 17 00:00:00 2001 From: hezijie Date: Tue, 2 Jan 2024 17:19:43 +0800 Subject: [PATCH 56/64] Revert "Fix 201-machine-learning-moderately-secure" This reverts commit e98e893d2d3f06f2df8f40a962c1a2f9ecbfe36c. --- .../201-machine-learning-moderately-secure/variables.tf | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/quickstart/201-machine-learning-moderately-secure/variables.tf b/quickstart/201-machine-learning-moderately-secure/variables.tf index bfedebbfe..fb8299d2a 100644 --- a/quickstart/201-machine-learning-moderately-secure/variables.tf +++ b/quickstart/201-machine-learning-moderately-secure/variables.tf @@ -1,7 +1,6 @@ variable "name" { type = string description = "Name of the deployment" - default = "examplehost" } variable "environment" { @@ -72,6 +71,5 @@ variable "dsvm_admin_username" { variable "dsvm_host_password" { type = string description = "Password for the admin username of the Data Science VM" - default = "ChangeMe123!" sensitive = true -} +} \ No newline at end of file From 7e2f19b6cb21f2531ce6241c41e6a4beb8a2b921 Mon Sep 17 00:00:00 2001 From: hezijie Date: Wed, 3 Jan 2024 09:17:31 +0800 Subject: [PATCH 57/64] add random suffix for machine learning workspace to avoid testing failure. --- .../workspace.tf | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/workspace.tf b/quickstart/202-machine-learning-moderately-secure-existing-VNet/workspace.tf index 61e591b16..187086928 100644 --- a/quickstart/202-machine-learning-moderately-secure-existing-VNet/workspace.tf +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/workspace.tf @@ -47,9 +47,14 @@ resource "azurerm_container_registry" "default" { public_network_access_enabled = false } +resource "random_string" "workspace_suffix" { + length = 10 + special = false +} + # Machine Learning workspace resource "azurerm_machine_learning_workspace" "default" { - name = "mlw-${var.name}-${var.environment}" + name = "mlw-${var.name}-${var.environment}-${random_string.workspace_suffix.result}" location = azurerm_resource_group.default.location resource_group_name = azurerm_resource_group.default.name application_insights_id = azurerm_application_insights.default.id From b6d3ffd60151ba8c455b9ffaecd0f5d02010bc82 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 3 Jan 2024 02:01:05 +0000 Subject: [PATCH 58/64] Update TestRecord --- .../TestRecord.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md b/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md index 929351712..f21d387b9 100644 --- a/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/TestRecord.md @@ -1,3 +1,21 @@ +## 03 Jan 24 01:49 UTC + +Success: true + +### Versions + +Terraform v1.6.3 +on linux_amd64 ++ provider registry.terraform.io/hashicorp/azurerm v2.99.0 ++ provider registry.terraform.io/hashicorp/random v3.6.0 ++ provider registry.terraform.io/orobix/azureml v0.0.5 + +### Error + + + +--- + ## 31 Dec 23 00:18 UTC Success: false From 22b2e39335e6e9b3aeaf37119b2fa2ca3a099cd5 Mon Sep 17 00:00:00 2001 From: hezijie Date: Wed, 3 Jan 2024 17:08:44 +0800 Subject: [PATCH 59/64] fix 201vmsspacker jumpbox, MSI_ID is object id not client id, we need az cli to retrieve client id --- .github/workflows/weekly-e2e.yaml | 3 ++- test/e2e/quickstart_test.go | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/weekly-e2e.yaml b/.github/workflows/weekly-e2e.yaml index 1241c5061..faed56646 100644 --- a/.github/workflows/weekly-e2e.yaml +++ b/.github/workflows/weekly-e2e.yaml @@ -21,7 +21,8 @@ jobs: az login --identity --username $MSI_ID > /dev/null export ARM_SUBSCRIPTION_ID=$(az login --identity --username $MSI_ID | jq -r '.[0] | .id') export ARM_TENANT_ID=$(az login --identity --username $MSI_ID | jq -r '.[0] | .tenantId') - docker run --rm -v $(pwd):/src -w /src/test -e MSI_ID -e ARM_SUBSCRIPTION_ID -e ARM_TENANT_ID -e ARM_USE_MSI=true -e CHANGED_FOLDERS mcr.microsoft.com/azterraform sh -c "go mod tidy && go test -timeout=1440m -parallel 10 -v ./e2e" + ARM_CLIENT_ID=$(az identity list | jq -r --arg MSI_ID "$MSI_ID" '.[] | select(.principalId == $MSI_ID) | .clientId') + docker run --rm -v $(pwd):/src -w /src/test -e MSI_ID -e ARM_SUBSCRIPTION_ID -e ARM_CLIENT_ID -e ARM_TENANT_ID -e ARM_USE_MSI=true -e CHANGED_FOLDERS mcr.microsoft.com/azterraform sh -c "go mod tidy && go test -timeout=1440m -parallel 10 -v ./e2e" - name: Update run: | docker run --rm -v $(pwd):/src -w /src mcr.microsoft.com/azterraform sh scripts/update-test-record.sh diff --git a/test/e2e/quickstart_test.go b/test/e2e/quickstart_test.go index 89d83687a..54ad12376 100644 --- a/test/e2e/quickstart_test.go +++ b/test/e2e/quickstart_test.go @@ -116,8 +116,7 @@ func test201VmssPackerJumpbox(t *testing.T) { if clientId := os.Getenv("ARM_CLIENT_ID"); clientId != "" { packerVars["client_id"] = clientId } - if identityId := os.Getenv("MSI_ID"); identityId != "" { - packerVars["client_id"] = identityId + if os.Getenv("MSI_ID") != "" { useMsi = true } if clientSecret := os.Getenv("ARM_CLIENT_SECRET"); clientSecret != "" { From f71b56e99a1bdf905707773cf28928d80529640d Mon Sep 17 00:00:00 2001 From: hezijie Date: Wed, 3 Jan 2024 17:37:14 +0800 Subject: [PATCH 60/64] trigger example test --- quickstart/201-vmss-packer-jumpbox/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickstart/201-vmss-packer-jumpbox/readme.md b/quickstart/201-vmss-packer-jumpbox/readme.md index 348009b31..524c235ed 100644 --- a/quickstart/201-vmss-packer-jumpbox/readme.md +++ b/quickstart/201-vmss-packer-jumpbox/readme.md @@ -33,4 +33,4 @@ This template deploys an Azure virtual machine scale set with a jumpbox from a P ## Example To see how to run this example, see [Create an Azure virtual machine scale set from a Packer custom image by using Terraform -](https://docs.microsoft.com/azure/developer/terraform/create-vm-scaleset-network-disks-using-packer-hcl#create-an-azure-image-by-using-packer). +](https://docs.microsoft.com/azure/developer/terraform/create-vm-scaleset-network-disks-using-packer-hcl#create-an-azure-image-by-using-packer). \ No newline at end of file From 26a578a267ad86e86fc4c5b930d3d7cd7c1266c3 Mon Sep 17 00:00:00 2001 From: hezijie Date: Wed, 3 Jan 2024 17:46:26 +0800 Subject: [PATCH 61/64] trigger example test --- quickstart/201-vmss-packer-jumpbox/main.tf | 1 - 1 file changed, 1 deletion(-) diff --git a/quickstart/201-vmss-packer-jumpbox/main.tf b/quickstart/201-vmss-packer-jumpbox/main.tf index ff60175ea..e5e4dc4fb 100644 --- a/quickstart/201-vmss-packer-jumpbox/main.tf +++ b/quickstart/201-vmss-packer-jumpbox/main.tf @@ -262,4 +262,3 @@ resource "azurerm_virtual_machine" "jumpbox" { tags = var.tags } - From 696a7c9089f6529688b52f6c0cd9478872f1f560 Mon Sep 17 00:00:00 2001 From: hezijie Date: Wed, 3 Jan 2024 17:53:21 +0800 Subject: [PATCH 62/64] trigger example test --- .github/workflows/e2e.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index aa17e329a..ad787c48c 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -25,7 +25,10 @@ jobs: files_ignore: "**/TestRecord.md" dir_names_max_depth: 2 - name: test pr + env: + ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }} run: | + echo "change files" $ALL_CHANGED_FILES az login --identity --username $MSI_ID > /dev/null export ARM_SUBSCRIPTION_ID=$(az login --identity --username $MSI_ID | jq -r '.[0] | .id') export ARM_TENANT_ID=$(az login --identity --username $MSI_ID | jq -r '.[0] | .tenantId') From 846c40bdb79ec511e4bac1b28b1719213a18ce03 Mon Sep 17 00:00:00 2001 From: hezijie Date: Wed, 3 Jan 2024 17:56:41 +0800 Subject: [PATCH 63/64] trigger example test --- .github/workflows/e2e.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index ad787c48c..843e13ec0 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 #v3.6.0 - name: Get changed files id: changed-files - uses: tj-actions/changed-files@716b1e13042866565e00e85fd4ec490e186c4a2f #v41.0.1 + uses: tj-actions/changed-files@v40.2.3 with: dir_names: "true" separator: "," From fd52e1afed6164526e256bbc243a51c6bab17c39 Mon Sep 17 00:00:00 2001 From: hezijie Date: Wed, 3 Jan 2024 18:00:51 +0800 Subject: [PATCH 64/64] trigger example test --- .github/workflows/e2e.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 843e13ec0..0c980f842 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 #v3.6.0 - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v40.2.3 + uses: tj-actions/changed-files@v34 with: dir_names: "true" separator: ","