Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2533be9495 | |||
| cc9a7a2908 | |||
| bec84abc97 | |||
| 7af47dc643 | |||
| 778c209d80 | |||
| ad0ac30100 | |||
| d1f7202666 | |||
| 435555ac25 | |||
| 2181c0e173 | |||
| 6e14503e17 | |||
| 286ef164dc | |||
| ae3c0933c3 | |||
| 6d61deaee5 | |||
| c35766fb83 | |||
| d93a6bba20 |
@@ -17,7 +17,7 @@ jobs:
|
||||
e2e-check:
|
||||
runs-on: ubuntu-latest
|
||||
environment:
|
||||
name: acctests
|
||||
name: test
|
||||
steps:
|
||||
- name: Checking for Fork
|
||||
shell: pwsh
|
||||
@@ -32,11 +32,12 @@ jobs:
|
||||
- name: Get changed files
|
||||
if: github.event.pull_request.head.repo.fork == false
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v34
|
||||
uses: tj-actions/changed-files@v45
|
||||
with:
|
||||
dir_names: "true"
|
||||
dir_names: true
|
||||
separator: ","
|
||||
files: "quickstart/*"
|
||||
dir_names_include_files: "quickstart/*"
|
||||
files: "quickstart/**"
|
||||
files_ignore: "**/TestRecord.md"
|
||||
dir_names_max_depth: 2
|
||||
- name: test pr
|
||||
@@ -51,10 +52,4 @@ jobs:
|
||||
export ARM_TENANT_ID=${{ secrets.ARM_TENANT_ID }}
|
||||
export ARM_CLIENT_ID=${{ secrets.ARM_CLIENT_ID }}
|
||||
export CHANGED_FOLDERS="${{ steps.changed-files.outputs.all_changed_files }}"
|
||||
docker run --rm -v $(pwd):/src -w /src/test --network=host -e MSI_ID -e ARM_SUBSCRIPTION_ID -e ARM_TENANT_ID -e ARM_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
|
||||
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"
|
||||
@@ -15,11 +15,12 @@ jobs:
|
||||
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 #v3.6.0
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@716b1e13042866565e00e85fd4ec490e186c4a2f #v41.0.1
|
||||
uses: tj-actions/changed-files@v45
|
||||
with:
|
||||
dir_names: "true"
|
||||
dir_names: true
|
||||
separator: ","
|
||||
files: "quickstart/*"
|
||||
dir_names_include_files: "quickstart/*"
|
||||
files: "quickstart/**"
|
||||
dir_names_max_depth: 2
|
||||
- name: pr-check
|
||||
run: |
|
||||
|
||||
@@ -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 }}
|
||||
@@ -9,7 +9,7 @@ permissions:
|
||||
|
||||
jobs:
|
||||
full-e2e-check:
|
||||
runs-on: [self-hosted, 1ES.Pool=terraform-azurerm-doc]
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 1440
|
||||
environment:
|
||||
name: crontests
|
||||
@@ -21,11 +21,12 @@ jobs:
|
||||
timeout-minutes: 1440
|
||||
run: |
|
||||
git config --global --add safe.directory '*'
|
||||
az login --identity --username $MSI_ID > /dev/null
|
||||
export ARM_SUBSCRIPTION_ID=$(az login --identity --username $MSI_ID | jq -r '.[0] | .id')
|
||||
export ARM_TENANT_ID=$(az login --identity --username $MSI_ID | jq -r '.[0] | .tenantId')
|
||||
ARM_CLIENT_ID=$(az identity list | jq -r --arg MSI_ID "$MSI_ID" '.[] | select(.principalId == $MSI_ID) | .clientId')
|
||||
docker run --rm -v $(pwd):/src -w /src/test -e MSI_ID -e ARM_SUBSCRIPTION_ID -e ARM_CLIENT_ID -e ARM_TENANT_ID -e ARM_USE_MSI=true -e CHANGED_FOLDERS mcr.microsoft.com/azterraform sh -c "go mod tidy && go test -timeout=1440m -parallel 10 -v ./e2e"
|
||||
export ARM_OIDC_REQUEST_TOKEN=$ACTIONS_ID_TOKEN_REQUEST_TOKEN
|
||||
export ARM_OIDC_REQUEST_URL=$ACTIONS_ID_TOKEN_REQUEST_URL
|
||||
export ARM_SUBSCRIPTION_ID=${{ secrets.ARM_SUBSCRIPTION_ID }}
|
||||
export ARM_TENANT_ID=${{ secrets.ARM_TENANT_ID }}
|
||||
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 "go mod tidy && go test -timeout=1440m -parallel 10 -v ./e2e"
|
||||
- name: Update
|
||||
run: |
|
||||
docker run --rm -v $(pwd):/src -w /src mcr.microsoft.com/azterraform sh scripts/update-test-record.sh
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,33 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,41 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,41 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: true
|
||||
|
||||
@@ -5,10 +5,10 @@ terraform {
|
||||
required_providers {
|
||||
azurerm = {
|
||||
source = "hashicorp/azurerm"
|
||||
version = "~>2.0"
|
||||
version = "~>3.0"
|
||||
}
|
||||
azapi = {
|
||||
source = "Azure/azapi"
|
||||
source = "Azure/azapi"
|
||||
version = "~> 1.0"
|
||||
}
|
||||
local = {
|
||||
@@ -27,7 +27,11 @@ terraform {
|
||||
}
|
||||
|
||||
provider "azurerm" {
|
||||
features {}
|
||||
features {
|
||||
resource_group {
|
||||
prevent_deletion_if_contains_resources = false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
resource "random_pet" "id" {}
|
||||
@@ -88,20 +92,18 @@ resource "azurerm_lb_backend_address_pool" "bpepool" {
|
||||
}
|
||||
|
||||
resource "azurerm_lb_probe" "vmss" {
|
||||
resource_group_name = azurerm_resource_group.vmss.name
|
||||
loadbalancer_id = azurerm_lb.vmss.id
|
||||
name = "ssh-running-probe"
|
||||
port = var.application_port
|
||||
loadbalancer_id = azurerm_lb.vmss.id
|
||||
name = "ssh-running-probe"
|
||||
port = var.application_port
|
||||
}
|
||||
|
||||
resource "azurerm_lb_rule" "lbnatrule" {
|
||||
resource_group_name = azurerm_resource_group.vmss.name
|
||||
loadbalancer_id = azurerm_lb.vmss.id
|
||||
name = "http"
|
||||
protocol = "Tcp"
|
||||
frontend_port = var.application_port
|
||||
backend_port = var.application_port
|
||||
backend_address_pool_id = azurerm_lb_backend_address_pool.bpepool.id
|
||||
backend_address_pool_ids = [azurerm_lb_backend_address_pool.bpepool.id]
|
||||
frontend_ip_configuration_name = "PublicIPAddress"
|
||||
probe_id = azurerm_lb_probe.vmss.id
|
||||
}
|
||||
@@ -217,7 +219,7 @@ resource "azurerm_network_interface" "jumpbox" {
|
||||
ip_configuration {
|
||||
name = "IPConfiguration"
|
||||
subnet_id = azurerm_subnet.vmss.id
|
||||
private_ip_address_allocation = "dynamic"
|
||||
private_ip_address_allocation = "Dynamic"
|
||||
public_ip_address_id = azurerm_public_ip.jumpbox.id
|
||||
}
|
||||
|
||||
|
||||
@@ -8,21 +8,21 @@ packer {
|
||||
}
|
||||
|
||||
variable client_id {
|
||||
type = string
|
||||
type = string
|
||||
default = null
|
||||
}
|
||||
variable client_secret {
|
||||
type = string
|
||||
type = string
|
||||
default = null
|
||||
}
|
||||
|
||||
variable subscription_id {
|
||||
type = string
|
||||
type = string
|
||||
default = null
|
||||
}
|
||||
|
||||
variable tenant_id {
|
||||
type = string
|
||||
type = string
|
||||
default = null
|
||||
}
|
||||
|
||||
@@ -35,6 +35,15 @@ variable "image_resource_group_name" {
|
||||
default = "myPackerImages"
|
||||
}
|
||||
|
||||
variable "oidc_request_url" {
|
||||
default = null
|
||||
}
|
||||
|
||||
variable "oidc_request_token" {
|
||||
default = null
|
||||
}
|
||||
|
||||
# arm builder
|
||||
source "azure-arm" "builder" {
|
||||
client_id = var.client_id
|
||||
client_secret = var.client_secret
|
||||
@@ -47,8 +56,10 @@ source "azure-arm" "builder" {
|
||||
os_type = "Linux"
|
||||
subscription_id = var.subscription_id
|
||||
tenant_id = var.tenant_id
|
||||
oidc_request_url = var.oidc_request_url
|
||||
oidc_request_token = var.oidc_request_token
|
||||
vm_size = "Standard_DS2_v2"
|
||||
azure_tags = {
|
||||
azure_tags = {
|
||||
"dept" : "Engineering",
|
||||
"task" : "Image deployment",
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@ variable "location" {
|
||||
variable "tags" {
|
||||
description = "Map of the tags to use for the resources that are deployed"
|
||||
type = map(string)
|
||||
default = {
|
||||
default = {
|
||||
environment = "codelab"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,537 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,35 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
@@ -1,3 +1,61 @@
|
||||
## 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
|
||||
|
||||
Success: false
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user