Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 42dc6ee08b | |||
| 9b1c5ecc01 | |||
| 878ea2e7e3 | |||
| e6c148c0f4 | |||
| 2e32ee6be9 | |||
| b6461f0599 | |||
| d425200e96 | |||
| 7579e9323c | |||
| 55754aaaf0 | |||
| 3d3251c597 | |||
| 0172bedb85 |
@@ -1,3 +1,37 @@
|
||||
## 20 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:15 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 20 Oct 24 02:31 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 02:02 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:55 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 02:22 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 02:09 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:58 UTC
|
||||
|
||||
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 |
|
||||
@@ -1,62 +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 "azurerm_kubernetes_cluster" "aks" {
|
||||
name = random_pet.azurerm_kubernetes_cluster_name.id
|
||||
location = azurerm_resource_group.rg.location
|
||||
resource_group_name = azurerm_resource_group.rg.name
|
||||
dns_prefix = random_pet.azurerm_kubernetes_cluster_dns_prefix.id
|
||||
|
||||
identity {
|
||||
type = "SystemAssigned"
|
||||
}
|
||||
|
||||
default_node_pool {
|
||||
name = "agentpool"
|
||||
vm_size = var.aks_node_vm_size
|
||||
node_count = var.aks_node_count
|
||||
vnet_subnet_id = element(tolist(azurerm_virtual_network.vnet.subnet), 0).id
|
||||
}
|
||||
|
||||
windows_profile {
|
||||
admin_username = var.admin_username
|
||||
admin_password = var.admin_password
|
||||
}
|
||||
|
||||
network_profile {
|
||||
network_plugin = "azure"
|
||||
load_balancer_sku = "standard"
|
||||
}
|
||||
|
||||
edge_zone = var.aks_extended_zone
|
||||
|
||||
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,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,3 +1,37 @@
|
||||
## 20 Oct 24 02: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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:57 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:52 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 01:20 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01: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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:44 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 01:23 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:53 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:43 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 01:34 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:38 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:54 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 20 Oct 24 01:09 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:31 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:40 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 20 Oct 24 01:18 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:33 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:37 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 20 Oct 24 01:14 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:28 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:33 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 01:14 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:28 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:33 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 01:50 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 02: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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 01:14 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 01:38 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 02:30 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 01:36 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 02: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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01: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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 01:35 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 00:19 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01: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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:22 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 00:29 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:21 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:30 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
# Azure Container Registry
|
||||
|
||||
Deploy an Azure Container Registry.
|
||||
|
||||
## 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_container_registry](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/container_registry)
|
||||
|
||||
## 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
|
||||
@@ -0,0 +1,23 @@
|
||||
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_string" "acr_name" {
|
||||
length = 5
|
||||
lower = true
|
||||
numeric = false
|
||||
special = false
|
||||
upper = false
|
||||
}
|
||||
|
||||
resource "azurerm_container_registry" "example" {
|
||||
name = "${random_string.acr_name.result}registry"
|
||||
resource_group_name = azurerm_resource_group.rg.name
|
||||
location = azurerm_resource_group.rg.location
|
||||
sku = "Standard"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
output "resource_group_name" {
|
||||
value = azurerm_resource_group.rg.name
|
||||
}
|
||||
|
||||
output "container_registry_name" {
|
||||
value = azurerm_container_registry.example.name
|
||||
}
|
||||
|
||||
output "container_registry_login_server" {
|
||||
value = azurerm_container_registry.example.login_server
|
||||
}
|
||||
+2
@@ -1,4 +1,6 @@
|
||||
terraform {
|
||||
required_version = ">=1.0"
|
||||
|
||||
required_providers {
|
||||
azurerm = {
|
||||
source = "hashicorp/azurerm"
|
||||
@@ -0,0 +1,11 @@
|
||||
variable "resource_group_location" {
|
||||
type = string
|
||||
default = "eastus"
|
||||
description = "Location of the resource group."
|
||||
}
|
||||
|
||||
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."
|
||||
}
|
||||
@@ -1,3 +1,39 @@
|
||||
## 20 Oct 24 00:16 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:10 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:19 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 20 Oct 24 00:17 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:10 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:19 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:12 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:22 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
# Azure Batch
|
||||
|
||||
Deploy an Azure Batch account and two batch pools.
|
||||
|
||||
## 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_batch_account](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/batch_account)
|
||||
- [azurerm_batch_pool](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/batch_pool)
|
||||
|
||||
## 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
|
||||
@@ -0,0 +1,34 @@
|
||||
## 20 Oct 24 00:19 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01: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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
@@ -0,0 +1,114 @@
|
||||
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_string" "storage_account_name" {
|
||||
length = 8
|
||||
lower = true
|
||||
numeric = false
|
||||
special = false
|
||||
upper = false
|
||||
}
|
||||
|
||||
resource "azurerm_storage_account" "example" {
|
||||
name = random_string.storage_account_name.result
|
||||
resource_group_name = azurerm_resource_group.rg.name
|
||||
location = azurerm_resource_group.rg.location
|
||||
account_tier = "Standard"
|
||||
account_replication_type = "LRS"
|
||||
}
|
||||
|
||||
resource "random_string" "batch_account_name" {
|
||||
length = 8
|
||||
lower = true
|
||||
numeric = false
|
||||
special = false
|
||||
upper = false
|
||||
}
|
||||
|
||||
resource "azurerm_batch_account" "example" {
|
||||
name = random_string.batch_account_name.result
|
||||
resource_group_name = azurerm_resource_group.rg.name
|
||||
location = azurerm_resource_group.rg.location
|
||||
storage_account_id = azurerm_storage_account.example.id
|
||||
storage_account_authentication_mode = "StorageKeys"
|
||||
}
|
||||
|
||||
resource "random_pet" "azurerm_batch_pool_name" {
|
||||
prefix = "pool"
|
||||
}
|
||||
|
||||
resource "azurerm_batch_pool" "fixed" {
|
||||
name = "${random_pet.azurerm_batch_pool_name.id}-fixed-pool"
|
||||
resource_group_name = azurerm_resource_group.rg.name
|
||||
account_name = azurerm_batch_account.example.name
|
||||
display_name = "Fixed Scale Pool"
|
||||
vm_size = "Standard_A1"
|
||||
node_agent_sku_id = "batch.node.ubuntu 22.04"
|
||||
|
||||
fixed_scale {
|
||||
target_dedicated_nodes = 2
|
||||
resize_timeout = "PT15M"
|
||||
}
|
||||
|
||||
storage_image_reference {
|
||||
publisher = "Canonical"
|
||||
offer = "0001-com-ubuntu-server-jammy"
|
||||
sku = "22_04-lts"
|
||||
version = "latest"
|
||||
}
|
||||
|
||||
start_task {
|
||||
command_line = "echo 'Hello World from $env'"
|
||||
task_retry_maximum = 1
|
||||
wait_for_success = true
|
||||
|
||||
common_environment_properties = {
|
||||
env = "TEST"
|
||||
}
|
||||
|
||||
user_identity {
|
||||
auto_user {
|
||||
elevation_level = "NonAdmin"
|
||||
scope = "Task"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
metadata = {
|
||||
"tagName" = "Example tag"
|
||||
}
|
||||
}
|
||||
|
||||
resource "azurerm_batch_pool" "autopool" {
|
||||
name = "${random_pet.azurerm_batch_pool_name.id}-autoscale-pool"
|
||||
resource_group_name = azurerm_resource_group.rg.name
|
||||
account_name = azurerm_batch_account.example.name
|
||||
display_name = "Auto Scale Pool"
|
||||
vm_size = "Standard_A1"
|
||||
node_agent_sku_id = "batch.node.ubuntu 22.04"
|
||||
|
||||
auto_scale {
|
||||
evaluation_interval = "PT15M"
|
||||
|
||||
formula = <<EOF
|
||||
startingNumberOfVMs = 1;
|
||||
maxNumberofVMs = 25;
|
||||
pendingTaskSamplePercent = $PendingTasks.GetSamplePercent(180 * TimeInterval_Second);
|
||||
pendingTaskSamples = pendingTaskSamplePercent < 70 ? startingNumberOfVMs : avg($PendingTasks.GetSample(180 * TimeInterval_Second));
|
||||
$TargetDedicatedNodes=min(maxNumberofVMs, pendingTaskSamples);
|
||||
EOF
|
||||
}
|
||||
|
||||
storage_image_reference {
|
||||
publisher = "Canonical"
|
||||
offer = "0001-com-ubuntu-server-jammy"
|
||||
sku = "22_04-lts"
|
||||
version = "latest"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
output "resource_group_name" {
|
||||
value = azurerm_resource_group.rg.name
|
||||
}
|
||||
|
||||
output "storage_account_name" {
|
||||
value = azurerm_storage_account.example.name
|
||||
}
|
||||
|
||||
output "batch_account_name" {
|
||||
value = azurerm_batch_account.example.name
|
||||
}
|
||||
|
||||
output "batch_pool_fixed_name" {
|
||||
value = azurerm_batch_pool.fixed.name
|
||||
}
|
||||
|
||||
output "batch_pool_autopool_name" {
|
||||
value = azurerm_batch_pool.autopool.name
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
terraform {
|
||||
required_version = ">=1.0"
|
||||
|
||||
required_providers {
|
||||
azurerm = {
|
||||
source = "hashicorp/azurerm"
|
||||
version = "~>3.0"
|
||||
}
|
||||
random = {
|
||||
source = "hashicorp/random"
|
||||
version = "~>3.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
provider "azurerm" {
|
||||
features {}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
variable "resource_group_location" {
|
||||
type = string
|
||||
default = "eastus"
|
||||
description = "Location of the resource group."
|
||||
}
|
||||
|
||||
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."
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
# Azure Batch with start task
|
||||
|
||||
Deploy an Azure Batch account and two batch pools, one of which has a "start task".
|
||||
|
||||
## 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_batch_account](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/batch_account)
|
||||
- [azurerm_batch_pool](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/batch_pool)
|
||||
|
||||
## 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
|
||||
@@ -0,0 +1,34 @@
|
||||
## 20 Oct 24 00:21 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01: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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
@@ -0,0 +1,114 @@
|
||||
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_string" "storage_account_name" {
|
||||
length = 8
|
||||
lower = true
|
||||
numeric = false
|
||||
special = false
|
||||
upper = false
|
||||
}
|
||||
|
||||
resource "azurerm_storage_account" "example" {
|
||||
name = random_string.storage_account_name.result
|
||||
resource_group_name = azurerm_resource_group.rg.name
|
||||
location = azurerm_resource_group.rg.location
|
||||
account_tier = "Standard"
|
||||
account_replication_type = "LRS"
|
||||
}
|
||||
|
||||
resource "random_string" "batch_account_name" {
|
||||
length = 8
|
||||
lower = true
|
||||
numeric = false
|
||||
special = false
|
||||
upper = false
|
||||
}
|
||||
|
||||
resource "azurerm_batch_account" "example" {
|
||||
name = random_string.batch_account_name.result
|
||||
resource_group_name = azurerm_resource_group.rg.name
|
||||
location = azurerm_resource_group.rg.location
|
||||
storage_account_id = azurerm_storage_account.example.id
|
||||
storage_account_authentication_mode = "StorageKeys"
|
||||
}
|
||||
|
||||
resource "random_pet" "azurerm_batch_pool_name" {
|
||||
prefix = "pool"
|
||||
}
|
||||
|
||||
resource "azurerm_batch_pool" "fixed" {
|
||||
name = "${random_pet.azurerm_batch_pool_name.id}-fixed-pool"
|
||||
resource_group_name = azurerm_resource_group.rg.name
|
||||
account_name = azurerm_batch_account.example.name
|
||||
display_name = "Fixed Scale Pool"
|
||||
vm_size = "Standard_D4_v3"
|
||||
node_agent_sku_id = "batch.node.ubuntu 22.04"
|
||||
|
||||
fixed_scale {
|
||||
target_dedicated_nodes = 2
|
||||
resize_timeout = "PT15M"
|
||||
}
|
||||
|
||||
storage_image_reference {
|
||||
publisher = "Canonical"
|
||||
offer = "0001-com-ubuntu-server-jammy"
|
||||
sku = "22_04-lts"
|
||||
version = "latest"
|
||||
}
|
||||
|
||||
start_task {
|
||||
command_line = "echo 'Hello World from $env'"
|
||||
task_retry_maximum = 1
|
||||
wait_for_success = true
|
||||
|
||||
common_environment_properties = {
|
||||
env = "TEST"
|
||||
}
|
||||
|
||||
user_identity {
|
||||
auto_user {
|
||||
elevation_level = "NonAdmin"
|
||||
scope = "Task"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
metadata = {
|
||||
"tagName" = "Example tag"
|
||||
}
|
||||
}
|
||||
|
||||
resource "azurerm_batch_pool" "autopool" {
|
||||
name = "${random_pet.azurerm_batch_pool_name.id}-autoscale-pool"
|
||||
resource_group_name = azurerm_resource_group.rg.name
|
||||
account_name = azurerm_batch_account.example.name
|
||||
display_name = "Auto Scale Pool"
|
||||
vm_size = "Standard_D4_v3"
|
||||
node_agent_sku_id = "batch.node.ubuntu 22.04"
|
||||
|
||||
auto_scale {
|
||||
evaluation_interval = "PT15M"
|
||||
|
||||
formula = <<EOF
|
||||
startingNumberOfVMs = 1;
|
||||
maxNumberofVMs = 25;
|
||||
pendingTaskSamplePercent = $PendingTasks.GetSamplePercent(180 * TimeInterval_Second);
|
||||
pendingTaskSamples = pendingTaskSamplePercent < 70 ? startingNumberOfVMs : avg($PendingTasks.GetSample(180 * TimeInterval_Second));
|
||||
$TargetDedicatedNodes=min(maxNumberofVMs, pendingTaskSamples);
|
||||
EOF
|
||||
}
|
||||
|
||||
storage_image_reference {
|
||||
publisher = "Canonical"
|
||||
offer = "0001-com-ubuntu-server-jammy"
|
||||
sku = "22_04-lts"
|
||||
version = "latest"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
output "resource_group_name" {
|
||||
value = azurerm_resource_group.rg.name
|
||||
}
|
||||
|
||||
output "storage_account_name" {
|
||||
value = azurerm_storage_account.example.name
|
||||
}
|
||||
|
||||
output "batch_account_name" {
|
||||
value = azurerm_batch_account.example.name
|
||||
}
|
||||
|
||||
output "batch_pool_fixed_name" {
|
||||
value = azurerm_batch_pool.fixed.name
|
||||
}
|
||||
|
||||
output "batch_pool_autopool_name" {
|
||||
value = azurerm_batch_pool.autopool.name
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
terraform {
|
||||
required_version = ">=1.0"
|
||||
|
||||
required_providers {
|
||||
azurerm = {
|
||||
source = "hashicorp/azurerm"
|
||||
version = "~>3.0"
|
||||
}
|
||||
random = {
|
||||
source = "hashicorp/random"
|
||||
version = "~>3.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
provider "azurerm" {
|
||||
features {}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
variable "resource_group_location" {
|
||||
type = string
|
||||
default = "eastus"
|
||||
description = "Location of the resource group."
|
||||
}
|
||||
|
||||
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."
|
||||
}
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:24 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:05 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:18 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01: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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:23 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 00:29 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:32 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 00:29 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:30 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 04:25 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 03:53 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:29 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 04: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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 03:59 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 03:18 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 03: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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 03:56 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 03:14 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 03:20 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 03:47 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 03:10 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 03:20 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 03:53 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 03:10 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
# Azure Data Factory
|
||||
|
||||
This template deploys an Azure Data Factory instance.
|
||||
|
||||
## 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_data_factory](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/data_factory)
|
||||
|
||||
## 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. | eastus |
|
||||
|
||||
## Example
|
||||
@@ -0,0 +1,43 @@
|
||||
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_string" "azurerm_data_factory" {
|
||||
length = 13
|
||||
lower = true
|
||||
numeric = false
|
||||
special = false
|
||||
upper = false
|
||||
}
|
||||
|
||||
resource "random_string" "azurerm_storage_account" {
|
||||
length = 13
|
||||
lower = true
|
||||
numeric = false
|
||||
special = false
|
||||
upper = false
|
||||
}
|
||||
|
||||
resource "azurerm_storage_account" "example" {
|
||||
name = random_string.azurerm_storage_account.result
|
||||
resource_group_name = azurerm_resource_group.rg.name
|
||||
location = azurerm_resource_group.rg.location
|
||||
account_tier = "Standard"
|
||||
account_replication_type = "LRS"
|
||||
|
||||
}
|
||||
|
||||
resource "azurerm_data_factory" "example" {
|
||||
name = random_string.azurerm_data_factory.result
|
||||
location = azurerm_resource_group.rg.location
|
||||
resource_group_name = azurerm_resource_group.rg.name
|
||||
|
||||
identity {
|
||||
type = "SystemAssigned"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
output "resource_group_name" {
|
||||
value = azurerm_resource_group.rg.name
|
||||
}
|
||||
|
||||
output "data_factory_name" {
|
||||
value = azurerm_data_factory.example.name
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
terraform {
|
||||
required_version = ">=1.0"
|
||||
|
||||
required_providers {
|
||||
azurerm = {
|
||||
source = "hashicorp/azurerm"
|
||||
version = "~>3.0"
|
||||
}
|
||||
random = {
|
||||
source = "hashicorp/random"
|
||||
version = "~>3.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
provider "azurerm" {
|
||||
features {}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
variable "resource_group_location" {
|
||||
type = string
|
||||
default = "eastus"
|
||||
description = "Location of the resource group."
|
||||
}
|
||||
|
||||
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."
|
||||
}
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 01: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/random v3.6.3
|
||||
|
||||
### Error
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:44 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 01:02 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 01:06 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:55 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 01: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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:51 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 01:08 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 01:04 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:34 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:16 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 01:29 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:46 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:43 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 01:04 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:28 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:20 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 20 Oct 24 00:30 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:30 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:23 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 00:34 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:23 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:19 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 00:44 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:31 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:47 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 00:38 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01: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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:40 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 01:45 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 02:41 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 01:52 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 00:48 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:38 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:49 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 20 Oct 24 00:28 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:16 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:31 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 00:29 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01: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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:33 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:11 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:26 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 00:27 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 00:19 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:30 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:26 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:17 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 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.4.3
|
||||
|
||||
### Error
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:16 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 02: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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:05 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 00:15 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 20 Oct 24 02: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/http v3.4.5
|
||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
||||
|
||||
### Error
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:13 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 03:07 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 02: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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:03 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:56 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 02:29 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:03 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:59 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 02:35 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
### Versions
|
||||
|
||||
Terraform v1.9.3
|
||||
on linux_amd64
|
||||
+ provider registry.terraform.io/hashicorp/azurerm v4.6.0
|
||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
||||
|
||||
### Error
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:05 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
### Versions
|
||||
|
||||
Terraform v1.9.3
|
||||
on linux_amd64
|
||||
+ provider registry.terraform.io/hashicorp/azurerm v4.5.0
|
||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
||||
|
||||
### Error
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 03:03 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 02:32 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01: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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 03:12 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 20 Oct 24 02:22 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:04 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:56 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 02:28 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:55 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 20 Oct 24 02:27 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:01 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:55 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 02:23 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:51 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 02:22 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 00:56 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:49 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 02:20 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:12 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 01:39 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 00:57 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:58 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 02:09 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 00:56 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:49 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 20 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/helm v2.9.0
|
||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
||||
|
||||
### Error
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 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/helm v2.9.0
|
||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
||||
|
||||
### Error
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:48 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 01:59 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 00:56 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:40 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 20 Oct 24 01: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/kubernetes v2.33.0
|
||||
+ provider registry.terraform.io/hashicorp/random v3.3.2
|
||||
|
||||
### Error
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 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/kubernetes v2.33.0
|
||||
+ provider registry.terraform.io/hashicorp/random v3.3.2
|
||||
|
||||
### Error
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:37 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 02:15 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01: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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:48 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:09 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:50 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 20 Oct 24 02:08 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 01:09 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:47 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 02:35 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 03:11 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,33 @@
|
||||
## 20 Oct 24 01:36 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
### Versions
|
||||
|
||||
Terraform v1.9.3
|
||||
on linux_amd64
|
||||
|
||||
### Error
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 00:39 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
### Versions
|
||||
|
||||
Terraform v1.9.3
|
||||
on linux_amd64
|
||||
|
||||
### Error
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:13 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:15 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 20 Oct 24 01:37 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 00:46 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 01:16 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 Oct 24 00:34 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:15 UTC
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 20 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 13 Oct 24 00:38 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
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 06 Oct 24 02:10 UTC
|
||||
|
||||
Success: false
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user