Skip to content

Commit

Permalink
Update Terraform to version 1.0.4 (Azure#334)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chambras authored Aug 6, 2021
1 parent f7e62ec commit 0a2bf89
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 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.3
ARG AZURERM_VERSION=2.69.0
ARG TERRAFORM_VERSION=1.0.4
ARG AZURERM_VERSION=2.70.0
ARG RANDOM_VERSION=3.1.0
ARG TIME_VERSION=0.7.2
ARG TFLINT_VERSION=0.30.0
ARG TFLINT_AZURERM=0.11.0

# Azure CLI version
ARG AZURE_CLI_VERSION=2.26.1-1~focal
ARG AZURE_CLI_VERSION=2.27.0-1~focal

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

required_version = "= 1.0.3"
required_version = "= 1.0.4"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "= 2.69.0"
version = "= 2.70.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -205,8 +205,8 @@ resource "azurerm_log_analytics_workspace" "laws" {
}

resource "azurerm_log_analytics_solution" "laws_sentinel" {
provider = azurerm.tier1
count = var.create_sentinel ? 1 : 0
provider = azurerm.tier1
count = var.create_sentinel ? 1 : 0

solution_name = "SecurityInsights"
location = azurerm_resource_group.tier1.location
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 @@ -2,11 +2,11 @@
# Licensed under the MIT License.
terraform {
backend "azurerm" {}
required_version = "= 1.0.3"
required_version = "= 1.0.4"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "= 2.69.0"
version = "= 2.70.0"
}
}
}
Expand Down

0 comments on commit 0a2bf89

Please sign in to comment.