Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cdbb609895 | |||
| 72bc2be5aa |
@@ -52,4 +52,10 @@ jobs:
|
|||||||
export ARM_TENANT_ID=${{ secrets.ARM_TENANT_ID }}
|
export ARM_TENANT_ID=${{ secrets.ARM_TENANT_ID }}
|
||||||
export ARM_CLIENT_ID=${{ secrets.ARM_CLIENT_ID }}
|
export ARM_CLIENT_ID=${{ secrets.ARM_CLIENT_ID }}
|
||||||
export CHANGED_FOLDERS="${{ steps.changed-files.outputs.all_changed_files }}"
|
export CHANGED_FOLDERS="${{ steps.changed-files.outputs.all_changed_files }}"
|
||||||
docker run --rm -v $(pwd):/src -w /src/test --network=host -e ARM_SUBSCRIPTION_ID -e ARM_TENANT_ID -e ARM_CLIENT_ID -e ARM_OIDC_REQUEST_TOKEN -e ARM_OIDC_REQUEST_URL -e ARM_USE_OIDC=true -e CHANGED_FOLDERS mcr.microsoft.com/azterraform:latest sh -c "pkenv install 1.10.2 && go mod tidy && go test -timeout=360m -v ./e2e"
|
docker run --rm -v $(pwd):/src -w /src/test --network=host -e MSI_ID -e ARM_SUBSCRIPTION_ID -e ARM_TENANT_ID -e ARM_CLIENT_ID -e ARM_OIDC_REQUEST_TOKEN -e ARM_OIDC_REQUEST_URL -e ARM_USE_OIDC=true -e CHANGED_FOLDERS mcr.microsoft.com/azterraform:latest sh -c "pkenv install 1.10.2 && go mod tidy && go test -timeout=360m -v ./e2e"
|
||||||
|
- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 #v3.1.3
|
||||||
|
with:
|
||||||
|
name: TestRecord-${{ inputs.pr_number }}
|
||||||
|
retention-days: 60
|
||||||
|
path: |
|
||||||
|
quickstart/**/TestRecord.md.tmp
|
||||||
@@ -0,0 +1,42 @@
|
|||||||
|
name: Main Branch Push
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- master
|
||||||
|
paths:
|
||||||
|
- 'quickstart/**'
|
||||||
|
permissions:
|
||||||
|
actions: write
|
||||||
|
contents: write
|
||||||
|
jobs:
|
||||||
|
main-branch-push:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: get-default-branch
|
||||||
|
run: |
|
||||||
|
branch=$(curl -s "https://api.github.com/repos/$GITHUB_REPOSITORY" | jq -r '.default_branch')
|
||||||
|
echo "default_branch=$branch" >> $GITHUB_ENV
|
||||||
|
- name: checkout
|
||||||
|
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 #v3.6.0
|
||||||
|
- uses: 8BitJonny/gh-get-current-pr@2215326c76d51bfa3f2af0a470f32677f6c0cae9 #2.1.0
|
||||||
|
id: PR
|
||||||
|
- name: Download artifact
|
||||||
|
id: download-artifact
|
||||||
|
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e #v2.28.0
|
||||||
|
with:
|
||||||
|
github_token: ${{secrets.GITHUB_TOKEN}}
|
||||||
|
workflow: e2e.yaml
|
||||||
|
pr: ${{ steps.PR.outputs.number }}
|
||||||
|
name: TestRecord-${{ steps.PR.outputs.number }}
|
||||||
|
path: TestRecord
|
||||||
|
if_no_artifact_found: ignore
|
||||||
|
- name: Update
|
||||||
|
run: |
|
||||||
|
sh scripts/update-test-record.sh
|
||||||
|
- name: Commit & Push changes
|
||||||
|
uses: actions-js/push@156f2b10c3aa000c44dbe75ea7018f32ae999772 #v1.4
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
message: 'Update TestRecord'
|
||||||
|
branch: ${{ env.default_branch }}
|
||||||
@@ -9,7 +9,7 @@ permissions:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
full-e2e-check:
|
full-e2e-check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: [self-hosted, 1ES.Pool=terraform-azurerm-doc]
|
||||||
timeout-minutes: 1440
|
timeout-minutes: 1440
|
||||||
environment:
|
environment:
|
||||||
name: crontests
|
name: crontests
|
||||||
@@ -21,12 +21,11 @@ jobs:
|
|||||||
timeout-minutes: 1440
|
timeout-minutes: 1440
|
||||||
run: |
|
run: |
|
||||||
git config --global --add safe.directory '*'
|
git config --global --add safe.directory '*'
|
||||||
export ARM_OIDC_REQUEST_TOKEN=$ACTIONS_ID_TOKEN_REQUEST_TOKEN
|
az login --identity --username $MSI_ID > /dev/null
|
||||||
export ARM_OIDC_REQUEST_URL=$ACTIONS_ID_TOKEN_REQUEST_URL
|
export ARM_SUBSCRIPTION_ID=$(az login --identity --username $MSI_ID | jq -r '.[0] | .id')
|
||||||
export ARM_SUBSCRIPTION_ID=${{ secrets.ARM_SUBSCRIPTION_ID }}
|
export ARM_TENANT_ID=$(az login --identity --username $MSI_ID | jq -r '.[0] | .tenantId')
|
||||||
export ARM_TENANT_ID=${{ secrets.ARM_TENANT_ID }}
|
ARM_CLIENT_ID=$(az identity list | jq -r --arg MSI_ID "$MSI_ID" '.[] | select(.principalId == $MSI_ID) | .clientId')
|
||||||
export ARM_CLIENT_ID=${{ secrets.ARM_CLIENT_ID_CRONTEST }}
|
docker run --rm -v $(pwd):/src -w /src/test -e MSI_ID -e ARM_SUBSCRIPTION_ID -e ARM_CLIENT_ID -e ARM_TENANT_ID -e ARM_USE_MSI=true -e CHANGED_FOLDERS mcr.microsoft.com/azterraform sh -c "go mod tidy && go test -timeout=1440m -parallel 10 -v ./e2e"
|
||||||
docker run --rm -v $(pwd):/src -w /src/test --network=host -e ARM_SUBSCRIPTION_ID -e ARM_CLIENT_ID -e ARM_TENANT_ID -e ARM_OIDC_REQUEST_TOKEN -e ARM_OIDC_REQUEST_URL -e ARM_USE_OIDC=true -e CHANGED_FOLDERS mcr.microsoft.com/azterraform sh -c "go mod tidy && go test -timeout=1440m -parallel 10 -v ./e2e"
|
|
||||||
- name: Update
|
- name: Update
|
||||||
run: |
|
run: |
|
||||||
docker run --rm -v $(pwd):/src -w /src mcr.microsoft.com/azterraform sh scripts/update-test-record.sh
|
docker run --rm -v $(pwd):/src -w /src mcr.microsoft.com/azterraform sh scripts/update-test-record.sh
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:24 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:21 UTC
|
## 08 Sep 24 00:21 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,39 +1,3 @@
|
|||||||
## 22 Sep 24 00:15 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:30 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 02:33 UTC
|
## 08 Sep 24 02:33 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 02:31 UTC
|
## 08 Sep 24 02:31 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 02:21 UTC
|
## 08 Sep 24 02:21 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 02:18 UTC
|
## 08 Sep 24 02:18 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 02:17 UTC
|
## 08 Sep 24 02:17 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 02:13 UTC
|
## 08 Sep 24 02:13 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,39 +1,3 @@
|
|||||||
## 22 Sep 24 00:13 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/random v3.6.3
|
|
||||||
+ provider registry.terraform.io/hashicorp/tls v4.0.4
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:29 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/random v3.6.3
|
|
||||||
+ provider registry.terraform.io/hashicorp/tls v4.0.4
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 02:14 UTC
|
## 08 Sep 24 02:14 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,39 +1,3 @@
|
|||||||
## 22 Sep 24 00:12 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 v2.99.0
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:29 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 v2.99.0
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 02:16 UTC
|
## 08 Sep 24 02:16 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,39 +1,3 @@
|
|||||||
## 22 Sep 24 00:12 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:29 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 02:12 UTC
|
## 08 Sep 24 02:12 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00:12 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:29 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 02:09 UTC
|
## 08 Sep 24 02:09 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 02:46 UTC
|
## 08 Sep 24 02:46 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 03:04 UTC
|
## 08 Sep 24 03:04 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:28 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 02:51 UTC
|
## 08 Sep 24 02:51 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:57 UTC
|
## 08 Sep 24 01:57 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 02:03 UTC
|
## 08 Sep 24 02:03 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,39 +1,3 @@
|
|||||||
## 22 Sep 24 00:11 UTC
|
|
||||||
|
|
||||||
Success: false
|
|
||||||
|
|
||||||
### Versions
|
|
||||||
|
|
||||||
Terraform v1.9.3
|
|
||||||
on linux_amd64
|
|
||||||
+ provider registry.terraform.io/hashicorp/azuread v2.53.1
|
|
||||||
+ provider registry.terraform.io/hashicorp/azurerm v2.99.0
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:29 UTC
|
|
||||||
|
|
||||||
Success: false
|
|
||||||
|
|
||||||
### Versions
|
|
||||||
|
|
||||||
Terraform v1.9.3
|
|
||||||
on linux_amd64
|
|
||||||
+ provider registry.terraform.io/hashicorp/azuread v2.53.1
|
|
||||||
+ provider registry.terraform.io/hashicorp/azurerm v2.99.0
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:54 UTC
|
## 08 Sep 24 01:54 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,39 +1,3 @@
|
|||||||
## 22 Sep 24 00:11 UTC
|
|
||||||
|
|
||||||
Success: false
|
|
||||||
|
|
||||||
### Versions
|
|
||||||
|
|
||||||
Terraform v1.9.3
|
|
||||||
on linux_amd64
|
|
||||||
+ provider registry.terraform.io/hashicorp/azuread v2.53.1
|
|
||||||
+ provider registry.terraform.io/hashicorp/azurerm v2.99.0
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:29 UTC
|
|
||||||
|
|
||||||
Success: false
|
|
||||||
|
|
||||||
### Versions
|
|
||||||
|
|
||||||
Terraform v1.9.3
|
|
||||||
on linux_amd64
|
|
||||||
+ provider registry.terraform.io/hashicorp/azuread v2.53.1
|
|
||||||
+ provider registry.terraform.io/hashicorp/azurerm v2.99.0
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:54 UTC
|
## 08 Sep 24 01:54 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:56 UTC
|
## 08 Sep 24 01:56 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 02:00 UTC
|
## 08 Sep 24 02:00 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:28 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:53 UTC
|
## 08 Sep 24 01:53 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:28 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:52 UTC
|
## 08 Sep 24 01:52 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:28 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:53 UTC
|
## 08 Sep 24 01:53 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:28 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:53 UTC
|
## 08 Sep 24 01:53 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 03:05 UTC
|
## 08 Sep 24 03:05 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:26 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 03:46 UTC
|
## 08 Sep 24 03:46 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:26 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 03:41 UTC
|
## 08 Sep 24 03:41 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:26 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 03:37 UTC
|
## 08 Sep 24 03:37 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:26 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 03:33 UTC
|
## 08 Sep 24 03:33 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:26 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:26 UTC
|
## 08 Sep 24 01:26 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:26 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:18 UTC
|
## 08 Sep 24 01:18 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00:13 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/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:26 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/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:37 UTC
|
## 08 Sep 24 01:37 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:26 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:17 UTC
|
## 08 Sep 24 01:17 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:26 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:46 UTC
|
## 08 Sep 24 01:46 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:26 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:14 UTC
|
## 08 Sep 24 01:14 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,39 +1,3 @@
|
|||||||
## 22 Sep 24 00:13 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:26 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:18 UTC
|
## 08 Sep 24 01:18 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:26 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:09 UTC
|
## 08 Sep 24 01:09 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:26 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:16 UTC
|
## 08 Sep 24 01:16 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:26 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:10 UTC
|
## 08 Sep 24 01:10 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:26 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 02:08 UTC
|
## 08 Sep 24 02:08 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:17 UTC
|
## 08 Sep 24 01:17 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,39 +1,3 @@
|
|||||||
## 22 Sep 24 00:12 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:25 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:59 UTC
|
## 08 Sep 24 00:59 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:00 UTC
|
## 08 Sep 24 01:00 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:56 UTC
|
## 08 Sep 24 00:56 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:37 UTC
|
## 08 Sep 24 01:37 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:36 UTC
|
## 08 Sep 24 01:36 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:54 UTC
|
## 08 Sep 24 00:54 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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.4.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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.4.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:52 UTC
|
## 08 Sep 24 00:52 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:20 UTC
|
## 08 Sep 24 00:20 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,39 +1,3 @@
|
|||||||
## 22 Sep 24 00: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/http v3.4.5
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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/http v3.4.5
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:22 UTC
|
## 08 Sep 24 01:22 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:50 UTC
|
## 08 Sep 24 00:50 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:50 UTC
|
## 08 Sep 24 00:50 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00:15 UTC
|
|
||||||
|
|
||||||
Success: false
|
|
||||||
|
|
||||||
### Versions
|
|
||||||
|
|
||||||
Terraform v1.9.3
|
|
||||||
on linux_amd64
|
|
||||||
+ provider registry.terraform.io/hashicorp/azurerm v4.3.0
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:30 UTC
|
|
||||||
|
|
||||||
Success: false
|
|
||||||
|
|
||||||
### Versions
|
|
||||||
|
|
||||||
Terraform v1.9.3
|
|
||||||
on linux_amd64
|
|
||||||
+ provider registry.terraform.io/hashicorp/azurerm v4.2.0
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:53 UTC
|
## 08 Sep 24 00:53 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:50 UTC
|
## 08 Sep 24 00:50 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,39 +1,3 @@
|
|||||||
## 22 Sep 24 00:15 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:28 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:48 UTC
|
## 08 Sep 24 00:48 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:28 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:47 UTC
|
## 08 Sep 24 00:47 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,39 +1,3 @@
|
|||||||
## 22 Sep 24 00:15 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 v2.99.0
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:28 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 v2.99.0
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:47 UTC
|
## 08 Sep 24 00:47 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:28 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:43 UTC
|
## 08 Sep 24 00:43 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:28 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:43 UTC
|
## 08 Sep 24 00:43 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:28 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:43 UTC
|
## 08 Sep 24 00:43 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:26 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:54 UTC
|
## 08 Sep 24 00:54 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:49 UTC
|
## 08 Sep 24 00:49 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,39 +1,3 @@
|
|||||||
## 22 Sep 24 00: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/helm v2.9.0
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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/helm v2.9.0
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:45 UTC
|
## 08 Sep 24 00:45 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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.4.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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.4.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:42 UTC
|
## 08 Sep 24 00:42 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,39 +1,3 @@
|
|||||||
## 22 Sep 24 00: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/kubernetes v2.32.0
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.3.2
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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/kubernetes v2.32.0
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.3.2
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:42 UTC
|
## 08 Sep 24 00:42 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:06 UTC
|
## 08 Sep 24 01:06 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:02 UTC
|
## 08 Sep 24 01:02 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,39 +1,3 @@
|
|||||||
## 22 Sep 24 00:14 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:27 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:58 UTC
|
## 08 Sep 24 00:58 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 01:31 UTC
|
## 08 Sep 24 01:31 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,33 +1,3 @@
|
|||||||
## 22 Sep 24 00:14 UTC
|
|
||||||
|
|
||||||
Success: true
|
|
||||||
|
|
||||||
### Versions
|
|
||||||
|
|
||||||
Terraform v1.9.3
|
|
||||||
on linux_amd64
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:27 UTC
|
|
||||||
|
|
||||||
Success: true
|
|
||||||
|
|
||||||
### Versions
|
|
||||||
|
|
||||||
Terraform v1.9.3
|
|
||||||
on linux_amd64
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:31 UTC
|
## 08 Sep 24 00:31 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:31 UTC
|
## 08 Sep 24 00:31 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,39 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
+ provider registry.terraform.io/hashicorp/tls v4.0.4
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
+ provider registry.terraform.io/hashicorp/tls v4.0.4
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:35 UTC
|
## 08 Sep 24 00:35 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:32 UTC
|
## 08 Sep 24 00:32 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:31 UTC
|
## 08 Sep 24 00:31 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:28 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:29 UTC
|
## 08 Sep 24 00:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00:10 UTC
|
|
||||||
|
|
||||||
Success: false
|
|
||||||
|
|
||||||
### Versions
|
|
||||||
|
|
||||||
Terraform v1.9.3
|
|
||||||
on linux_amd64
|
|
||||||
+ provider registry.terraform.io/hashicorp/azurerm v4.3.0
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:25 UTC
|
|
||||||
|
|
||||||
Success: false
|
|
||||||
|
|
||||||
### Versions
|
|
||||||
|
|
||||||
Terraform v1.9.3
|
|
||||||
on linux_amd64
|
|
||||||
+ provider registry.terraform.io/hashicorp/azurerm v4.2.0
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:33 UTC
|
## 08 Sep 24 00:33 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:42 UTC
|
## 08 Sep 24 00:42 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,41 +1,3 @@
|
|||||||
## 22 Sep 24 00:10 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:25 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:33 UTC
|
## 08 Sep 24 00:33 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,39 +1,3 @@
|
|||||||
## 22 Sep 24 00:10 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:24 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:40 UTC
|
## 08 Sep 24 00:40 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:24 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:29 UTC
|
## 08 Sep 24 00:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:24 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:25 UTC
|
## 08 Sep 24 00:25 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:24 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:33 UTC
|
## 08 Sep 24 00:33 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,39 +1,3 @@
|
|||||||
## 22 Sep 24 00:10 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:24 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:28 UTC
|
## 08 Sep 24 00:28 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00:10 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:23 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:20 UTC
|
## 08 Sep 24 00:20 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,41 +1,3 @@
|
|||||||
## 22 Sep 24 00: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/local v2.3.0
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
|
||||||
+ provider registry.terraform.io/hashicorp/tls v4.0.4
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:24 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/local v2.3.0
|
|
||||||
+ provider registry.terraform.io/hashicorp/random v3.6.3
|
|
||||||
+ provider registry.terraform.io/hashicorp/tls v4.0.4
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:27 UTC
|
## 08 Sep 24 00:27 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:24 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:27 UTC
|
## 08 Sep 24 00:27 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00:10 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/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:24 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/random v3.6.3
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:24 UTC
|
## 08 Sep 24 00:24 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:24 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:21 UTC
|
## 08 Sep 24 00:21 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00: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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:24 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:24 UTC
|
## 08 Sep 24 00:24 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,537 +1,3 @@
|
|||||||
## 22 Sep 24 00:09 UTC
|
|
||||||
|
|
||||||
Success: false
|
|
||||||
|
|
||||||
### Versions
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
Initializing the backend...
|
|
||||||
|
|
||||||
Error: Terraform encountered problems during initialisation, including problems
|
|
||||||
with the configuration, described below.
|
|
||||||
|
|
||||||
The Terraform configuration must be valid before initialization so that
|
|
||||||
Terraform can determine which modules and providers need to be installed.
|
|
||||||
|
|
||||||
|
|
||||||
Warning: Quoted references are deprecated
|
|
||||||
|
|
||||||
on aks.tf line 6, in resource "azurerm_kubernetes_cluster" "default":
|
|
||||||
6: depends_on = ["azurerm_role_assignment.default"]
|
|
||||||
|
|
||||||
In this context, references are expected literally rather than in quotes.
|
|
||||||
Terraform 0.11 and earlier required quotes, but quoted references are now
|
|
||||||
deprecated and will be removed in a future version of Terraform. Remove the
|
|
||||||
quotes surrounding this reference to silence this warning.
|
|
||||||
|
|
||||||
(and 5 more similar warnings elsewhere)
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 3, in variable "name":
|
|
||||||
3: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 3, in variable "name":
|
|
||||||
3: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 9, in variable "environment":
|
|
||||||
9: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 9, in variable "environment":
|
|
||||||
9: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 17, in variable "location":
|
|
||||||
17: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 17, in variable "location":
|
|
||||||
17: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 25, in variable "node_count":
|
|
||||||
25: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 25, in variable "node_count":
|
|
||||||
25: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 31, in variable "node_type":
|
|
||||||
31: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 31, in variable "node_type":
|
|
||||||
31: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 37, in variable "node_os":
|
|
||||||
37: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 37, in variable "node_os":
|
|
||||||
37: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 43, in variable "dns_prefix":
|
|
||||||
43: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 43, in variable "dns_prefix":
|
|
||||||
43: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 51, in variable "vnet_address_space":
|
|
||||||
51: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 51, in variable "vnet_address_space":
|
|
||||||
51: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 57, in variable "vnet_aks_subnet_space":
|
|
||||||
57: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 57, in variable "vnet_aks_subnet_space":
|
|
||||||
57: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 63, in variable "vnet_ingress_subnet_space":
|
|
||||||
63: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 63, in variable "vnet_ingress_subnet_space":
|
|
||||||
63: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 69, in variable "vnet_gateway_subnet_space":
|
|
||||||
69: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 69, in variable "vnet_gateway_subnet_space":
|
|
||||||
69: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 75, in variable "ingress_load_balancer_ip":
|
|
||||||
75: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 75, in variable "ingress_load_balancer_ip":
|
|
||||||
75: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 82, in variable "gateway_instance_count":
|
|
||||||
82: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 82, in variable "gateway_instance_count":
|
|
||||||
82: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:23 UTC
|
|
||||||
|
|
||||||
Success: false
|
|
||||||
|
|
||||||
### Versions
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
Initializing the backend...
|
|
||||||
|
|
||||||
Error: Terraform encountered problems during initialisation, including problems
|
|
||||||
with the configuration, described below.
|
|
||||||
|
|
||||||
The Terraform configuration must be valid before initialization so that
|
|
||||||
Terraform can determine which modules and providers need to be installed.
|
|
||||||
|
|
||||||
|
|
||||||
Warning: Quoted references are deprecated
|
|
||||||
|
|
||||||
on aks.tf line 6, in resource "azurerm_kubernetes_cluster" "default":
|
|
||||||
6: depends_on = ["azurerm_role_assignment.default"]
|
|
||||||
|
|
||||||
In this context, references are expected literally rather than in quotes.
|
|
||||||
Terraform 0.11 and earlier required quotes, but quoted references are now
|
|
||||||
deprecated and will be removed in a future version of Terraform. Remove the
|
|
||||||
quotes surrounding this reference to silence this warning.
|
|
||||||
|
|
||||||
(and 5 more similar warnings elsewhere)
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 3, in variable "name":
|
|
||||||
3: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 3, in variable "name":
|
|
||||||
3: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 9, in variable "environment":
|
|
||||||
9: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 9, in variable "environment":
|
|
||||||
9: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 17, in variable "location":
|
|
||||||
17: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 17, in variable "location":
|
|
||||||
17: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 25, in variable "node_count":
|
|
||||||
25: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 25, in variable "node_count":
|
|
||||||
25: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 31, in variable "node_type":
|
|
||||||
31: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 31, in variable "node_type":
|
|
||||||
31: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 37, in variable "node_os":
|
|
||||||
37: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 37, in variable "node_os":
|
|
||||||
37: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 43, in variable "dns_prefix":
|
|
||||||
43: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 43, in variable "dns_prefix":
|
|
||||||
43: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 51, in variable "vnet_address_space":
|
|
||||||
51: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 51, in variable "vnet_address_space":
|
|
||||||
51: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 57, in variable "vnet_aks_subnet_space":
|
|
||||||
57: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 57, in variable "vnet_aks_subnet_space":
|
|
||||||
57: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 63, in variable "vnet_ingress_subnet_space":
|
|
||||||
63: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 63, in variable "vnet_ingress_subnet_space":
|
|
||||||
63: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 69, in variable "vnet_gateway_subnet_space":
|
|
||||||
69: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 69, in variable "vnet_gateway_subnet_space":
|
|
||||||
69: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 75, in variable "ingress_load_balancer_ip":
|
|
||||||
75: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 75, in variable "ingress_load_balancer_ip":
|
|
||||||
75: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 82, in variable "gateway_instance_count":
|
|
||||||
82: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
Error: Invalid quoted type constraints
|
|
||||||
|
|
||||||
on variables.tf line 82, in variable "gateway_instance_count":
|
|
||||||
82: type = "string"
|
|
||||||
|
|
||||||
Terraform 0.11 and earlier required type constraints to be given in quotes,
|
|
||||||
but that form is now deprecated and will be removed in a future version of
|
|
||||||
Terraform. Remove the quotes around "string".
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:19 UTC
|
## 08 Sep 24 00:19 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
## 22 Sep 24 00:09 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:23 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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:19 UTC
|
## 08 Sep 24 00:19 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,35 +1,3 @@
|
|||||||
## 22 Sep 24 00:09 UTC
|
|
||||||
|
|
||||||
Success: false
|
|
||||||
|
|
||||||
### Versions
|
|
||||||
|
|
||||||
Terraform v1.9.3
|
|
||||||
on linux_amd64
|
|
||||||
+ provider registry.terraform.io/hashicorp/azurerm v2.99.0
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:23 UTC
|
|
||||||
|
|
||||||
Success: false
|
|
||||||
|
|
||||||
### Versions
|
|
||||||
|
|
||||||
Terraform v1.9.3
|
|
||||||
on linux_amd64
|
|
||||||
+ provider registry.terraform.io/hashicorp/azurerm v2.99.0
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:19 UTC
|
## 08 Sep 24 00:19 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,61 +1,3 @@
|
|||||||
## 22 Sep 24 00:09 UTC
|
|
||||||
|
|
||||||
Success: false
|
|
||||||
|
|
||||||
### Versions
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
Initializing the backend...
|
|
||||||
Initializing provider plugins...
|
|
||||||
- Finding hashicorp/azurerm versions matching "2.78.0"...
|
|
||||||
- Finding latest version of telemaco019/azureml...
|
|
||||||
- Finding latest version of hashicorp/random...
|
|
||||||
- Installing hashicorp/azurerm v2.78.0...
|
|
||||||
- Installed hashicorp/azurerm v2.78.0 (signed by HashiCorp)
|
|
||||||
- Installing telemaco019/azureml v0.0.5...
|
|
||||||
- Installing hashicorp/random v3.6.3...
|
|
||||||
- Installed hashicorp/random v3.6.3 (signed by HashiCorp)
|
|
||||||
|
|
||||||
Error: Failed to install provider
|
|
||||||
|
|
||||||
Error while installing telemaco019/azureml v0.0.5: checksum list has no
|
|
||||||
SHA-256 hash for
|
|
||||||
"https://github.com/orobix/terraform-provider-azureml/releases/download/v0.0.5/terraform-provider-azureml_0.0.5_linux_amd64.zip"
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:23 UTC
|
|
||||||
|
|
||||||
Success: false
|
|
||||||
|
|
||||||
### Versions
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
Initializing the backend...
|
|
||||||
Initializing provider plugins...
|
|
||||||
- Finding latest version of telemaco019/azureml...
|
|
||||||
- Finding hashicorp/azurerm versions matching "2.78.0"...
|
|
||||||
- Finding latest version of hashicorp/random...
|
|
||||||
- Installing hashicorp/azurerm v2.78.0...
|
|
||||||
- Installed hashicorp/azurerm v2.78.0 (signed by HashiCorp)
|
|
||||||
- Installing hashicorp/random v3.6.3...
|
|
||||||
- Installed hashicorp/random v3.6.3 (signed by HashiCorp)
|
|
||||||
- Installing telemaco019/azureml v0.0.5...
|
|
||||||
|
|
||||||
Error: Failed to install provider
|
|
||||||
|
|
||||||
Error while installing telemaco019/azureml v0.0.5: checksum list has no
|
|
||||||
SHA-256 hash for
|
|
||||||
"https://github.com/orobix/terraform-provider-azureml/releases/download/v0.0.5/terraform-provider-azureml_0.0.5_linux_amd64.zip"
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:19 UTC
|
## 08 Sep 24 00:19 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,35 +1,3 @@
|
|||||||
## 22 Sep 24 00:09 UTC
|
|
||||||
|
|
||||||
Success: false
|
|
||||||
|
|
||||||
### Versions
|
|
||||||
|
|
||||||
Terraform v1.9.3
|
|
||||||
on linux_amd64
|
|
||||||
+ provider registry.terraform.io/hashicorp/azurerm v2.56.0
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 18 Sep 24 03:23 UTC
|
|
||||||
|
|
||||||
Success: false
|
|
||||||
|
|
||||||
### Versions
|
|
||||||
|
|
||||||
Terraform v1.9.3
|
|
||||||
on linux_amd64
|
|
||||||
+ provider registry.terraform.io/hashicorp/azurerm v2.56.0
|
|
||||||
|
|
||||||
### Error
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 08 Sep 24 00:21 UTC
|
## 08 Sep 24 00:21 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
Reference in New Issue
Block a user