Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2533be9495 |
@@ -53,9 +53,3 @@ jobs:
|
|||||||
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 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-${{ github.event.number }}
|
|
||||||
retention-days: 60
|
|
||||||
path: |
|
|
||||||
quickstart/**/TestRecord.md.tmp
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
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 }}
|
|
||||||
@@ -6,7 +6,6 @@ on:
|
|||||||
permissions:
|
permissions:
|
||||||
actions: write
|
actions: write
|
||||||
contents: write
|
contents: write
|
||||||
id-token: write
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
full-e2e-check:
|
full-e2e-check:
|
||||||
@@ -27,7 +26,7 @@ jobs:
|
|||||||
export ARM_SUBSCRIPTION_ID=${{ secrets.ARM_SUBSCRIPTION_ID }}
|
export ARM_SUBSCRIPTION_ID=${{ secrets.ARM_SUBSCRIPTION_ID }}
|
||||||
export ARM_TENANT_ID=${{ secrets.ARM_TENANT_ID }}
|
export ARM_TENANT_ID=${{ secrets.ARM_TENANT_ID }}
|
||||||
export ARM_CLIENT_ID=${{ secrets.ARM_CLIENT_ID_CRONTEST }}
|
export ARM_CLIENT_ID=${{ secrets.ARM_CLIENT_ID_CRONTEST }}
|
||||||
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 "pkenv install 1.10.2 && 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,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:24 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,21 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:30 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:30 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:30 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,21 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,21 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,21 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:28 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,21 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,21 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:28 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:28 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:28 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:28 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:25 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:26 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:26 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:26 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:26 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:26 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:26 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:26 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:26 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:26 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:26 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,21 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:26 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:26 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:26 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:26 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:26 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:25 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,21 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:25 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:25 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:25 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:25 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:25 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:25 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:25 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:23 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,21 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:30 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:30 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:30 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:29 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,21 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:28 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:28 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,21 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:28 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:28 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:28 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:28 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:26 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:27 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,21 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:27 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:27 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,21 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:27 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:27 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:27 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,21 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:27 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:27 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,18 @@
|
|||||||
|
## 22 Sep 24 00:14 UTC
|
||||||
|
|
||||||
|
Success: true
|
||||||
|
|
||||||
|
### Versions
|
||||||
|
|
||||||
|
Terraform v1.9.3
|
||||||
|
on linux_amd64
|
||||||
|
|
||||||
|
### Error
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## 18 Sep 24 03:27 UTC
|
## 18 Sep 24 03:27 UTC
|
||||||
|
|
||||||
Success: true
|
Success: true
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:27 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,21 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:27 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:23 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:25 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:28 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:25 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:25 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,22 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:25 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,21 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:24 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:24 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:24 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:24 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,21 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:24 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:23 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,22 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:24 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:24 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:24 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:24 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:24 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,270 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:23 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:23 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,19 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:23 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,32 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:23 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
@@ -1,3 +1,19 @@
|
|||||||
|
## 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
|
## 18 Sep 24 03:23 UTC
|
||||||
|
|
||||||
Success: false
|
Success: false
|
||||||
|
|||||||
Reference in New Issue
Block a user