Compare commits

..

5 Commits

Author SHA1 Message Date
zjhe c08405c06a fix broken script url 2024-10-05 12:37:06 +08:00
zjhe ff0b2795ab add random suffix to resource group name 2024-10-05 10:43:31 +08:00
zjhe dcca3ba6ef fix example 2024-10-05 10:39:55 +08:00
zjhe 86b15f1a9f fix example 2024-10-05 08:54:51 +08:00
zjhe ddfedda590 fix 301-hub-spoke 2024-10-05 08:50:32 +08:00
110 changed files with 25 additions and 1973 deletions
@@ -1,20 +1,3 @@
## 06 Oct 24 00:15 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:04 UTC ## 29 Sep 24 03:04 UTC
Success: true Success: true
-18
View File
@@ -1,21 +1,3 @@
## 06 Oct 24 00:55 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/azure/azapi v1.15.0
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 05:10 UTC ## 29 Sep 24 05:10 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 00:58 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 05:14 UTC ## 29 Sep 24 05:14 UTC
Success: false Success: false
@@ -1,23 +0,0 @@
# Azure Kubernetes Service (AKS) cluster in an Azure Extended Zone
This template deploys an Azure Kubernetes Service (AKS) cluster in an Azure Extended Zones.
## 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)
- [azurerm_virtual_network](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/virtual_network)
- [azurerm_kubernetes_cluster](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/kubernetes_cluster)
## Variables
| Name | Description | Default value |
|-|-|-|
| `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. | Central US |
| `virtual_network_name` | Name of the virtual network resource. | example-vnet |
| `aks_node_count` | Number of nodes in the AKS cluster. | 3 |
| `aks_node_vm_size` | Size of the VMs in the AKS cluster. | Standard_D2_v2 |
| `admin_username` | The admin username for the Windows node pool. | azureuser |
| `admin_password` | The admin password for the Windows node pool. | Passw0rd1234Us! |
| `aks_extended_zone` | AKS extended zone. | Los Angeles |
-135
View File
@@ -1,135 +0,0 @@
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
}
resource "random_pet" "azurerm_kubernetes_cluster_name" {
prefix = "cluster"
}
resource "random_pet" "azurerm_kubernetes_cluster_dns_prefix" {
prefix = "dns"
}
resource "azurerm_virtual_network" "vnet" {
name = var.virtual_network_name
address_space = ["192.168.0.0/16"]
location = azurerm_resource_group.rg.location
resource_group_name = azurerm_resource_group.rg.name
subnet {
name = "subnet1"
address_prefix = "192.168.1.0/24"
}
}
resource "azapi_resource" "aks" {
count = 1
type = "Microsoft.ContainerService/ManagedClusters@2024-05-01"
name = random_pet.azurerm_kubernetes_cluster_name.id
parent_id = azurerm_resource_group.rg.id
location = azurerm_resource_group.rg.location
identity {
type = "SystemAssigned"
}
body = {
extendedLocation = {
name = var.aks_extended_zone
type = "EdgeZone"
}
sku = {
name = "Base"
tier = "Free"
}
properties = {
dnsPrefix = random_pet.azurerm_kubernetes_cluster_dns_prefix.id
kubernetesVersion = "1.29"
agentPoolProfiles = [
{
name = "agentpool"
count = var.aks_node_count
vmSize = var.aks_node_vm_size
osDiskSizeGB = 128
kubeletDiskType = "OS"
vnetSubnetID = element(tolist(azurerm_virtual_network.vnet.subnet), 0).id
maxPods = 30
type = "VirtualMachineScaleSets"
enableAutoScaling = false,
scaleDownMode = "Delete",
orchestratorVersion = "1.29"
enableNodePublicIP = false
mode = "System"
enableEncryptionAtHost = false
enableUltraSSD = false
osType = "Linux"
osSKU = "Ubuntu"
upgradeSettings = {
maxSurge = "10%"
}
enableFIPS = false
}
]
windowsProfile = {
adminUsername = var.admin_username
adminPassword = var.admin_password
licenseType = "None"
enableCSIProxy = true
}
servicePrincipalProfile = {
clientId = "msi"
}
enableRBAC = true
supportPlan = "KubernetesOfficial"
networkProfile = {
networkPlugin = "azure"
networkPolicy = "none"
networkDataplane = "azure"
loadBalancerSku = "standard"
loadBalancerProfile = {
managedOutboundIPs = {
count = 1
}
backendPoolType = "nodeIPConfiguration"
}
serviceCidr = "10.0.0.0/16"
dnsServiceIP = "10.0.0.10"
outboundType = "loadBalancer"
serviceCidrs = [
"10.0.0.0/16",
]
ipFamilies = ["IPv4"]
}
autoUpgradeProfile = {
upgradeChannel = "none"
nodeOSUpgradeChannel = "NodeImage"
}
disableLocalAccounts = false
storageProfile = {
diskCSIDriver = {
enabled = true
}
fileCSIDriver = {
enabled = true
}
snapshotController = {
enabled = true
}
}
oidcIssuerProfile = {
enabled = false
}
azureMonitorProfile = {
metrics = {
enabled = false
}
}
}
}
timeouts {
create = "6h"
}
}
@@ -1,11 +0,0 @@
# output "resource_group_name" {
# value = azurerm_resource_group.rg.name
# }
#
# output "aks_cluster_name" {
# value = azurerm_kubernetes_cluster.aks.name
# }
#
# output "aks_extended_zone" {
# value = azurerm_kubernetes_cluster.aks.edge_zone
# }
@@ -1,20 +0,0 @@
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~>3.0"
}
azapi = {
source = "Azure/azapi"
version = "2.0.1"
}
random = {
source = "hashicorp/random"
version = "~>3.0"
}
}
}
provider "azurerm" {
features {}
}
@@ -1,47 +0,0 @@
variable "resource_group_name_prefix" {
type = string
default = "rg"
description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
}
variable "resource_group_location" {
type = string
default = "West US"
description = "Location of the resource group."
}
variable "virtual_network_name" {
type = string
description = "Virtual network names"
default = "example-vnet"
}
variable "aks_node_count" {
type = number
description = "AKS node count"
default = 3
}
variable "aks_node_vm_size" {
type = string
description = "AKS node VM size"
default = "Standard_D2_v2"
}
variable "admin_username" {
type = string
description = "The admin username for the Windows node pool."
default = "azureuser"
}
variable "admin_password" {
type = string
description = "The admin password for the Windows node pool."
default = "Passw0rd1234Us!"
}
variable "aks_extended_zone" {
type = string
description = "AKS extended zone"
default = "Los Angeles"
}
@@ -1,20 +1,3 @@
## 06 Oct 24 00:52 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 05:03 UTC ## 29 Sep 24 05:03 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 00:44 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 05:01 UTC ## 29 Sep 24 05:01 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 00:43 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 05:00 UTC ## 29 Sep 24 05:00 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 00:54 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:58 UTC ## 29 Sep 24 04:58 UTC
Success: false Success: false
@@ -1,21 +1,3 @@
## 06 Oct 24 00:40 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
+ provider registry.terraform.io/hashicorp/tls v4.0.4
### Error
---
## 29 Sep 24 04:49 UTC ## 29 Sep 24 04:49 UTC
Success: false Success: false
@@ -1,21 +1,3 @@
## 06 Oct 24 00:37 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/azure/azapi v1.15.0
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:48 UTC ## 29 Sep 24 04:48 UTC
Success: false Success: false
@@ -1,21 +1,3 @@
## 06 Oct 24 00:33 UTC
Success: false
### Versions
Terraform v1.9.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
---
## 29 Sep 24 04:48 UTC ## 29 Sep 24 04:48 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 00:33 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/azure/azapi v0.1.0
+ provider registry.terraform.io/hashicorp/azurerm v3.0.2
### Error
---
## 29 Sep 24 04:48 UTC ## 29 Sep 24 04:48 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 01:14 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 05:30 UTC ## 29 Sep 24 05:30 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 01:36 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 05:50 UTC ## 29 Sep 24 05:50 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 01:35 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 05:17 UTC ## 29 Sep 24 05:17 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 00:22 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:30 UTC ## 29 Sep 24 04:30 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 00:30 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:36 UTC ## 29 Sep 24 04:36 UTC
Success: true Success: true
@@ -1,21 +1,3 @@
## 06 Oct 24 00:19 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azuread v3.0.2
+ provider registry.terraform.io/hashicorp/azurerm v2.99.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:27 UTC ## 29 Sep 24 04:27 UTC
Success: false Success: false
@@ -1,21 +1,3 @@
## 06 Oct 24 00:19 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azuread v3.0.2
+ provider registry.terraform.io/hashicorp/azurerm v2.99.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:28 UTC ## 29 Sep 24 04:28 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 00:22 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:30 UTC ## 29 Sep 24 04:30 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 00:24 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:32 UTC ## 29 Sep 24 04:32 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 00:18 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:24 UTC ## 29 Sep 24 04:24 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 00:23 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:28 UTC ## 29 Sep 24 04:28 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 00:32 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:27 UTC ## 29 Sep 24 04:27 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 00:30 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:23 UTC ## 29 Sep 24 04:23 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 02:29 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 05:41 UTC ## 29 Sep 24 05:41 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 03:18 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 06:08 UTC ## 29 Sep 24 06:08 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 03:14 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 06:06 UTC ## 29 Sep 24 06:06 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 03:10 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 06:06 UTC ## 29 Sep 24 06:06 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 03:10 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 06:06 UTC ## 29 Sep 24 06:06 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 01:02 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:58 UTC ## 29 Sep 24 03:58 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 00:55 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:51 UTC ## 29 Sep 24 03:51 UTC
Success: true Success: true
-17
View File
@@ -1,20 +1,3 @@
## 06 Oct 24 01:08 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:48 UTC ## 29 Sep 24 03:48 UTC
Success: false Success: false
-17
View File
@@ -1,20 +1,3 @@
## 06 Oct 24 00:16 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:48 UTC ## 29 Sep 24 03:48 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 00:43 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:21 UTC ## 29 Sep 24 04:21 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 00:20 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:48 UTC ## 29 Sep 24 03:48 UTC
Success: true Success: true
@@ -1,21 +1,3 @@
## 06 Oct 24 00:23 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/azure/azapi v1.1.0
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.4.3
### Error
---
## 29 Sep 24 03:50 UTC ## 29 Sep 24 03:50 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 00:19 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:41 UTC ## 29 Sep 24 03:41 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 00:47 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:50 UTC ## 29 Sep 24 03:50 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 00:40 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:46 UTC ## 29 Sep 24 03:46 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 01:52 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:27 UTC ## 29 Sep 24 04:27 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 00:49 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:53 UTC ## 29 Sep 24 03:53 UTC
Success: true Success: true
@@ -1,21 +1,3 @@
## 06 Oct 24 00:31 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/azure/azapi v1.15.0
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:35 UTC ## 29 Sep 24 03:35 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 00:33 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:37 UTC ## 29 Sep 24 03:37 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 00:26 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:30 UTC ## 29 Sep 24 03:30 UTC
Success: true Success: true
-17
View File
@@ -1,20 +1,3 @@
## 06 Oct 24 00:30 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:34 UTC ## 29 Sep 24 03:34 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 00:26 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:30 UTC ## 29 Sep 24 03:30 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 00:17 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:29 UTC ## 29 Sep 24 03:29 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 00:16 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.4.3
### Error
---
## 29 Sep 24 03:28 UTC ## 29 Sep 24 03:28 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 00:15 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:04 UTC ## 29 Sep 24 03:04 UTC
Success: true Success: true
-18
View File
@@ -1,21 +1,3 @@
## 06 Oct 24 03:07 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/http v3.4.5
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:48 UTC ## 29 Sep 24 04:48 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 02:56 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:38 UTC ## 29 Sep 24 04:38 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 02:59 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:33 UTC ## 29 Sep 24 04:33 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 03:03 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v4.4.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:40 UTC ## 29 Sep 24 04:40 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 03:12 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:38 UTC ## 29 Sep 24 04:38 UTC
Success: false Success: false
@@ -1,21 +1,3 @@
## 06 Oct 24 02:56 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/azure/azapi v1.15.0
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:29 UTC ## 29 Sep 24 03:29 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 02:55 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:30 UTC ## 29 Sep 24 03:30 UTC
Success: true Success: true
@@ -1,21 +1,3 @@
## 06 Oct 24 02:55 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/azure/azapi v1.15.0
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:25 UTC ## 29 Sep 24 03:25 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 02:51 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:27 UTC ## 29 Sep 24 03:27 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 02:49 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:26 UTC ## 29 Sep 24 03:26 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 02:12 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:26 UTC ## 29 Sep 24 03:26 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 02:58 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:25 UTC ## 29 Sep 24 03:25 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 02:49 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:25 UTC ## 29 Sep 24 03:25 UTC
Success: false Success: false
-18
View File
@@ -1,21 +1,3 @@
## 06 Oct 24 02:48 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/helm v2.9.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:24 UTC ## 29 Sep 24 03:24 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 02:40 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.4.3
### Error
---
## 29 Sep 24 03:25 UTC ## 29 Sep 24 03:25 UTC
Success: false Success: false
@@ -1,21 +1,3 @@
## 06 Oct 24 02:37 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/kubernetes v2.32.0
+ provider registry.terraform.io/hashicorp/random v3.3.2
### Error
---
## 29 Sep 24 03:23 UTC ## 29 Sep 24 03:23 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 02:48 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:43 UTC ## 29 Sep 24 03:43 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 02:50 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:10 UTC ## 29 Sep 24 04:10 UTC
Success: false Success: false
@@ -1,21 +1,3 @@
## 06 Oct 24 02:47 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/azure/azapi v1.15.0
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:42 UTC ## 29 Sep 24 03:42 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 03:11 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:07 UTC ## 29 Sep 24 04:07 UTC
Success: false Success: false
@@ -1,18 +1,3 @@
## 06 Oct 24 02:13 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
### Error
---
## 29 Sep 24 03:11 UTC ## 29 Sep 24 03:11 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 02:15 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:13 UTC ## 29 Sep 24 03:13 UTC
Success: true Success: true
@@ -1,21 +1,3 @@
## 06 Oct 24 01:16 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
+ provider registry.terraform.io/hashicorp/tls v4.0.4
### Error
---
## 29 Sep 24 03:09 UTC ## 29 Sep 24 03:09 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 02:15 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:08 UTC ## 29 Sep 24 03:08 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 02:10 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:12 UTC ## 29 Sep 24 03:12 UTC
Success: false Success: false
-17
View File
@@ -1,20 +1,3 @@
## 06 Oct 24 02:13 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:10 UTC ## 29 Sep 24 03:10 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 02:11 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v4.4.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:13 UTC ## 29 Sep 24 03:13 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 02:27 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:24 UTC ## 29 Sep 24 03:24 UTC
Success: false Success: false
@@ -1,22 +1,3 @@
## 06 Oct 24 02:16 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/azure/azapi v1.15.0
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
+ provider registry.terraform.io/hashicorp/time v0.9.1
### Error
---
## 29 Sep 24 03:12 UTC ## 29 Sep 24 03:12 UTC
Success: false Success: false
@@ -1,21 +1,3 @@
## 06 Oct 24 01:59 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.0.2
+ provider registry.terraform.io/hashicorp/random v3.6.3
+ provider registry.terraform.io/orobix/azureml v0.0.5
### Error
---
## 29 Sep 24 03:02 UTC ## 29 Sep 24 03:02 UTC
Success: false Success: false
-17
View File
@@ -1,20 +1,3 @@
## 06 Oct 24 02:06 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:10 UTC ## 29 Sep 24 03:10 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 02:03 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:07 UTC ## 29 Sep 24 03:07 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 02:10 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:14 UTC ## 29 Sep 24 03:14 UTC
Success: true Success: true
@@ -1,21 +1,3 @@
## 06 Oct 24 02:02 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/azure/azapi v1.15.0
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:10 UTC ## 29 Sep 24 03:10 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 01:54 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.32.0
+ provider registry.terraform.io/hashicorp/http v3.4.5
### Error
---
## 29 Sep 24 03:02 UTC ## 29 Sep 24 03:02 UTC
Success: false Success: false
@@ -1,22 +1,3 @@
## 06 Oct 24 01:59 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/local v2.3.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
+ provider registry.terraform.io/hashicorp/tls v4.0.4
### Error
---
## 29 Sep 24 03:10 UTC ## 29 Sep 24 03:10 UTC
Success: true Success: true
@@ -1,20 +1,3 @@
## 06 Oct 24 01:58 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:53 UTC ## 29 Sep 24 04:53 UTC
Success: false Success: false
-17
View File
@@ -1,20 +1,3 @@
## 06 Oct 24 01:54 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:49 UTC ## 29 Sep 24 04:49 UTC
Success: false Success: false
+6 -13
View File
@@ -4,7 +4,7 @@ terraform {
required_providers { required_providers {
azurerm = { azurerm = {
source = "hashicorp/azurerm" source = "hashicorp/azurerm"
version = "~>3.0" version = "~>2.0"
} }
} }
} }
@@ -17,15 +17,6 @@ provider "azurerm" {
} }
} }
resource "random_password" "password" {
count = var.admin_password == null ? 1 : 0
length = 20
}
locals {
admin_password = try(random_password.password[0].result, var.admin_password)
}
resource "azurerm_resource_group" "vmss" { resource "azurerm_resource_group" "vmss" {
name = var.resource_group_name name = var.resource_group_name
location = var.location location = var.location
@@ -36,7 +27,7 @@ resource "random_string" "fqdn" {
length = 6 length = 6
special = false special = false
upper = false upper = false
numeric = false number = false
} }
resource "azurerm_virtual_network" "vmss" { resource "azurerm_virtual_network" "vmss" {
@@ -82,12 +73,14 @@ resource "azurerm_lb_backend_address_pool" "bpepool" {
} }
resource "azurerm_lb_probe" "vmss" { resource "azurerm_lb_probe" "vmss" {
resource_group_name = azurerm_resource_group.vmss.name
loadbalancer_id = azurerm_lb.vmss.id loadbalancer_id = azurerm_lb.vmss.id
name = "ssh-running-probe" name = "ssh-running-probe"
port = var.application_port port = var.application_port
} }
resource "azurerm_lb_rule" "lbnatrule" { resource "azurerm_lb_rule" "lbnatrule" {
resource_group_name = azurerm_resource_group.vmss.name
loadbalancer_id = azurerm_lb.vmss.id loadbalancer_id = azurerm_lb.vmss.id
name = "http" name = "http"
protocol = "Tcp" protocol = "Tcp"
@@ -134,7 +127,7 @@ resource "azurerm_virtual_machine_scale_set" "vmss" {
os_profile { os_profile {
computer_name_prefix = "vmlab" computer_name_prefix = "vmlab"
admin_username = var.admin_user admin_username = var.admin_user
admin_password = local.admin_password admin_password = var.admin_password
custom_data = file("web.conf") custom_data = file("web.conf")
} }
@@ -205,7 +198,7 @@ resource "azurerm_virtual_machine" "jumpbox" {
os_profile { os_profile {
computer_name = "jumpbox" computer_name = "jumpbox"
admin_username = var.admin_user admin_username = var.admin_user
admin_password = local.admin_password admin_password = var.admin_password
} }
os_profile_linux_config { os_profile_linux_config {
+1 -1
View File
@@ -28,6 +28,6 @@ variable "admin_user" {
variable "admin_password" { variable "admin_password" {
description = "Default password for admin account" description = "Default password for admin account"
default = null default = "ChangeMe123!"
sensitive = true sensitive = true
} }
@@ -1,20 +1,3 @@
## 06 Oct 24 01:42 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 04:42 UTC ## 29 Sep 24 04:42 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 01:41 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:15 UTC ## 29 Sep 24 03:15 UTC
Success: false Success: false
@@ -1,21 +1,3 @@
## 06 Oct 24 01:53 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.0
+ provider registry.terraform.io/orobix/azureml v0.0.5
### Error
---
## 08 Sep 24 00:36 UTC ## 08 Sep 24 00:36 UTC
Success: true Success: true
@@ -1,29 +1,3 @@
## 06 Oct 24 01:35 UTC
Success: false
### Versions
### Error
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)
---
## 29 Sep 24 03:10 UTC ## 29 Sep 24 03:10 UTC
Success: false Success: false
@@ -1,20 +1,3 @@
## 06 Oct 24 01:35 UTC
Success: false
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v2.99.0
+ provider registry.terraform.io/hashicorp/null v3.2.3
### Error
---
## 29 Sep 24 03:10 UTC ## 29 Sep 24 03:10 UTC
Success: false Success: false
-17
View File
@@ -1,20 +1,3 @@
## 06 Oct 24 01:57 UTC
Success: true
### Versions
Terraform v1.9.3
on linux_amd64
+ provider registry.terraform.io/hashicorp/azurerm v3.116.0
+ provider registry.terraform.io/hashicorp/random v3.6.3
### Error
---
## 29 Sep 24 03:10 UTC ## 29 Sep 24 03:10 UTC
Success: false Success: false

Some files were not shown because too many files have changed in this diff Show More