Skip to content

Commit

Permalink
Updating terraform provider to 2.80.0 (#464)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chambras authored Oct 18, 2021
1 parent aba1e46 commit 0b6cd21
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ FROM ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive

# Terraform, providers and tflint versions
ARG TERRAFORM_VERSION=1.0.6
ARG AZURERM_VERSION=2.76.0
ARG TERRAFORM_VERSION=1.0.8
ARG AZURERM_VERSION=2.80.0
ARG RANDOM_VERSION=3.1.0
ARG TIME_VERSION=0.7.2
ARG TFLINT_VERSION=0.32.1
Expand Down
2 changes: 1 addition & 1 deletion src/terraform/mlz/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "= 2.76.0"
version = "= 2.80.0"
}
random = {
source = "hashicorp/random"
Expand Down
4 changes: 2 additions & 2 deletions src/terraform/mlz/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ variable "environment" {
}

variable "metadata_host" {
description = "The metadata host for the Azure Cloud e.g. management.azure.com"
description = "The metadata host for the Azure Cloud e.g. management.azure.com or management.usgovcloudapi.net."
type = string
default = "management.azure.com"
}

variable "location" {
description = "The Azure region for most Mission LZ resources"
description = "The Azure region for most Mission LZ resources. e.g. for government usgovvirginia"
type = string
default = "East US"
}
Expand Down
2 changes: 1 addition & 1 deletion src/terraform/tier3/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "= 2.76.0"
version = "= 2.80.0"
}
}
}
Expand Down

0 comments on commit 0b6cd21

Please sign in to comment.