Skip to content

Commit

Permalink
Updating tools to newer versions (Azure#591)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chambras authored Jan 5, 2022
1 parent a7c5208 commit b629068
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .azure-devops/nightlybuild/mlz-tf-azurecloud-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- task: TerraformInstaller@0
inputs:
terraformVersion: '1.0.8'
terraformVersion: 'latest'

- task: AzureCLI@2
displayName: "Apply MLZ Terraform"
Expand Down
2 changes: 1 addition & 1 deletion .azure-devops/nightlybuild/mlz-tf-azuregov-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- task: TerraformInstaller@0
inputs:
terraformVersion: '1.0.8'
terraformVersion: 'latest'

- task: AzureCLI@2
displayName: "Apply MLZ Terraform"
Expand Down
2 changes: 1 addition & 1 deletion .azure-devops/prbuild/mlz-pr-tf-azurecloud-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- task: TerraformInstaller@0
inputs:
terraformVersion: '1.0.8'
terraformVersion: 'latest'
- task: AzureCLI@2
displayName: "Terraform Plan"
inputs:
Expand Down
2 changes: 1 addition & 1 deletion .azure-devops/prbuild/mlz-pr-tf-azuregov-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- task: TerraformInstaller@0
inputs:
terraformVersion: '1.0.8'
terraformVersion: 'latest'
- task: AzureCLI@2
displayName: "Terraform Plan"
inputs:
Expand Down
10 changes: 5 additions & 5 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ FROM ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive

# Terraform, providers and tflint versions
ARG TERRAFORM_VERSION=1.0.10
ARG AZURERM_VERSION=2.83.0
ARG TERRAFORM_VERSION=1.1.2
ARG AZURERM_VERSION=2.90.0
ARG RANDOM_VERSION=3.1.0
ARG TIME_VERSION=0.7.2
ARG TFLINT_VERSION=0.33.0
ARG TFLINT_AZURERM=0.13.2
ARG TFLINT_VERSION=0.34.0
ARG TFLINT_AZURERM=0.14.0

# Azure CLI version
ARG AZURE_CLI_VERSION=2.29.2-1~focal
ARG AZURE_CLI_VERSION=2.31.0-1~focal

# Update distro (software-properties-common installs the add-apt-repository command)
RUN apt-get update \
Expand Down
4 changes: 2 additions & 2 deletions src/terraform/mlz/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ terraform {
*/
backend "local" {}

required_version = ">= 1.0.8"
required_version = ">= 1.0.11"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "= 2.83.0"
version = "= 2.90.0"
}
random = {
source = "hashicorp/random"
Expand Down
4 changes: 2 additions & 2 deletions src/terraform/tier3/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ terraform {
*/
backend "local" {}

required_version = ">= 1.0.8"
required_version = ">= 1.0.11"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "= 2.83.0"
version = "= 2.90.0"
}
}
}
Expand Down

0 comments on commit b629068

Please sign in to comment.