Skip to content
This repository has been archived by the owner on Jul 12, 2023. It is now read-only.

Commit

Permalink
Upgrade Terraform and provider versions
Browse files Browse the repository at this point in the history
This bumps providers to their latest versions, which support Apple Silicon.
  • Loading branch information
sethvargo committed Sep 1, 2021
1 parent 3cc4435 commit 14ec706
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions terraform/alerting/variables.tf
Expand Up @@ -98,16 +98,16 @@ variable "forward_progress_indicators" {
}

terraform {
required_version = ">= 0.14.2"
required_version = "~> 1.0"

required_providers {
google = {
source = "hashicorp/google"
version = "~> 3.51"
version = "~> 3.82"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 3.51"
version = "~> 3.82"
}
}
}
12 changes: 6 additions & 6 deletions terraform/vars.tf
Expand Up @@ -378,28 +378,28 @@ variable "binary_authorization_allowlist_patterns" {
}

terraform {
required_version = ">= 0.14.2"
required_version = "~> 1.0"

required_providers {
google = {
source = "hashicorp/google"
version = "~> 3.58"
version = "~> 3.82"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 3.58"
version = "~> 3.82"
}
local = {
source = "hashicorp/local"
version = "~> 2.0"
version = "~> 2.1"
}
null = {
source = "hashicorp/null"
version = "~> 3.0"
version = "~> 3.1"
}
random = {
source = "hashicorp/random"
version = "~> 2.3"
version = "~> 3.1"
}
}
}

0 comments on commit 14ec706

Please sign in to comment.