File tree Expand file tree Collapse file tree 4 files changed +15
-15
lines changed Expand file tree Collapse file tree 4 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 1
- ARG TERRAFORM_VERSION=1.6.4
2
- ARG AZURECLI_VERSION=2.54 .0
1
+ ARG TERRAFORM_VERSION=1.6.6
2
+ ARG AZURECLI_VERSION=2.56 .0
3
3
4
4
FROM hashicorp/terraform:$TERRAFORM_VERSION as terraform
5
5
FROM mcr.microsoft.com/azure-cli:$AZURECLI_VERSION
Original file line number Diff line number Diff line change @@ -57,10 +57,10 @@ This project supports two options for running Terraform scripts:
57
57
Access to an ** Azure Subscription** and an [ ** Identity** ] ( ./docs/user/TerraformAzureAuthentication.md ) with the * Contributor* role are required.
58
58
59
59
#### Terraform Requirements:
60
- - [ Terraform] ( https://www.terraform.io/downloads.html ) - v1.6.4
60
+ - [ Terraform] ( https://www.terraform.io/downloads.html ) - v1.6.6
61
61
- [ kubectl] ( https://kubernetes.io/docs/tasks/tools/install-kubectl ) - v1.27.9
62
62
- [ jq] ( https://stedolan.github.io/jq/ ) - v1.6
63
- - [ Azure CLI] ( https://docs.microsoft.com/en-us/cli/azure ) - (optional - useful as an alternative to the Azure Portal) - v2.54 .0
63
+ - [ Azure CLI] ( https://docs.microsoft.com/en-us/cli/azure ) - (optional - useful as an alternative to the Azure Portal) - v2.56 .0
64
64
65
65
#### Docker Requirements:
66
66
- [ Docker] ( https://docs.docker.com/get-docker/ )
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ commandTests:
17
17
- name : " terraform version"
18
18
command : " terraform"
19
19
args : ["--version"]
20
- expectedOutput : ["Terraform v1.6.4 "]
20
+ expectedOutput : ["Terraform v1.6.6 "]
21
21
- name : " python version"
22
22
command : " python3"
23
23
args : ["--version"]
@@ -29,7 +29,7 @@ commandTests:
29
29
- -c
30
30
- |
31
31
az version -o tsv
32
- expectedOutput : ["2.54 .0\t2.54 .0\t1.1.0"]
32
+ expectedOutput : ["2.56 .0\t2.56 .0\t1.1.0"]
33
33
34
34
metadataTest :
35
35
workdir : " /viya4-iac-azure"
Original file line number Diff line number Diff line change 3
3
4
4
terraform {
5
5
6
- required_version = " >= 1.6.4 "
6
+ required_version = " >= 1.6.6 "
7
7
8
8
required_providers {
9
9
azurerm = {
10
10
source = " hashicorp/azurerm"
11
- version = " 3.81 .0"
11
+ version = " 3.86 .0"
12
12
}
13
13
azuread = {
14
14
source = " hashicorp/azuread"
15
- version = " 2.46.0 "
15
+ version = " ~>2.47 "
16
16
}
17
17
external = {
18
18
source = " hashicorp/external"
19
- version = " 2.3.2 "
19
+ version = " ~> 2.3"
20
20
}
21
21
local = {
22
22
source = " hashicorp/local"
23
- version = " 2.4.0 "
23
+ version = " ~> 2.4"
24
24
}
25
25
null = {
26
26
source = " hashicorp/null"
27
- version = " 3.2 .2"
27
+ version = " ~>3 .2"
28
28
}
29
29
tls = {
30
30
source = " hashicorp/tls"
31
- version = " 4.0.4 "
31
+ version = " ~> 4.0"
32
32
}
33
33
cloudinit = {
34
34
source = " hashicorp/cloudinit"
35
- version = " 2.3.2 "
35
+ version = " ~> 2.3"
36
36
}
37
37
kubernetes = {
38
38
source = " hashicorp/kubernetes"
39
- version = " 2.23.0 "
39
+ version = " ~>2.25 "
40
40
}
41
41
}
42
42
}
You can’t perform that action at this time.
0 commit comments