Update to terraform v1.0.0 (#4)

* add hashes for both linux and macOS to the lock file
* update google provider v3.70.0 -> v3.71.0
This commit is contained in:
Ryan Boehning
2021-06-08 07:25:53 -07:00
committed by GitHub
parent f4e906ee0c
commit 0203377079
4 changed files with 18 additions and 16 deletions

View File

@@ -1 +1 @@
0.15.5
1.0.0

28
.terraform.lock.hcl generated
View File

@@ -2,21 +2,22 @@
# Manual edits may be lost in future updates.
provider "registry.terraform.io/hashicorp/google" {
version = "3.70.0"
version = "3.71.0"
constraints = ">= 3.70.0"
hashes = [
"h1:BDbh9qJsoTo3MZz6Bff4ZUI/bK2Ss4IWeSkVFlB1WAM=",
"zh:26f37fc308ddb20baf20efd93726b2ff7894310c4980c07f3e0ae467ff3cad82",
"zh:40cd363b7a325833685940b5fd6d6ba5a54d1a637dba06ae05114facdf7f49a9",
"zh:42ee807cba7f0e1c06b52b3a70ee5da707a38d7a73a459e99cadd733a38f53a5",
"zh:57d6fd677c699be7ae97cfcd831283e2d04b1e168c9906ab49a499663ba0c801",
"zh:7238128698516b9a6f7d49b1f772aeee0234e162997ca5fd16315c6a57c8fead",
"zh:77d923faac5dd9744a4e0ba4d47a8b2de19358fff9b2060b82b127694a48c9d2",
"zh:7fdfb1b0bce09bbae8ab4d6c44d72ddbaddddf14c6aca3d952f71e03a57d9d0d",
"zh:a14af8edad375b15502cb33c2ac9a401b14c891832b4257056d86a4f65a453f7",
"zh:c8a7b2202db3ffaad11011911181a382f3b55a0804d3c0a1177e6431a391e426",
"zh:cd0818982ee24c8bd1caed93816b6f15fa1cef07de39d1edf5110fd17e892430",
"zh:d2abded6c1088a85d7487369998c71652a338b46b1646e67676a717ff1f394f8",
"h1:2TKIPbA+rqmJ5jfLk8AIsi7CAAqhhA+kO2676RuO7gU=",
"h1:IbmbFG0X5XFdJXTXLgvYstC1YuWb8HioHOPo5E/2EvI=",
"zh:0ed7d1a873011aa0b0d00d2e377b4fbf4a2d4164c69956afa65adb47220d7ca0",
"zh:80448ba1bc094cf2a4c1b7aa00519846fe636c5f964e53d7a5706a6cbdd009cd",
"zh:81dab2e452c23e3c4f659799b0b076c129cb9fe866037fdde94ecb28dbea56be",
"zh:8b15d9c37cd04303f866b66bffe13c15d8e3254459958ebaad184d63dc1f5da0",
"zh:920b8b65a6900057c664cb099d64cc58f88ca4ab38e13e2c805cf2413a82795b",
"zh:bd022571709bff30d9d18a1bb2a383df85027b01ffbbf92ce9e514d48557899e",
"zh:c68b306b61e637a66f8c20580f23143517f957ed74b52476e4094a14fd72e615",
"zh:e5f2fe60bc99612cc089265d7003f6d2007304ec37367a43eb65716de2d1f491",
"zh:e865d87acf9c357b12ed55538d8d974a708762ed6288119e4c33591cae70159e",
"zh:f7b52e22b86f11a06f822a9b1176a4d50e120a6b4cfce61a0574007b5d143370",
"zh:ff98905d147426cfc5b018184706774e323993f773333802999eec9974c58773",
]
}
@@ -25,6 +26,7 @@ provider "registry.terraform.io/hashicorp/tfe" {
constraints = ">= 0.25.0"
hashes = [
"h1:lAHc3GGPq6MXy0F/RV9lLubshDz8fEPpqlE+Eqk0RC0=",
"h1:yLztDT2pPcRKnpryKb29xKujRmc82p5SuMt1fCFFT40=",
"zh:0979c23a42fb096ead4899ecd8117ef31dffaff68868eb59a4c00ff7aaa7ca52",
"zh:43b8f61b152cfa4e7568cff49c2252a4d67d35a8b3e3ce42fc87b0a2f86e80f1",
"zh:5326953390b5fa681a3f1989165f74782a06df2c27b2f833a592300ca5f7c84c",

View File

@@ -3,7 +3,7 @@
This repo demonstrates how to create a Cloud SQL DB with a private IP address
only, and connect to it with [Cloud SQL Proxy](https://cloud.google.com/sql/docs/postgres/sql-proxy). The full explanation of how this works can be found in [this blog post](https://medium.com/@ryanboehning/how-to-deploy-a-cloud-sql-db-with-a-private-ip-only-using-terraform-e184b08eca64).
Terraform v0.15.0 or higher is required.
Terraform v1.0.0 or higher is required.
## How To Use

View File

@@ -1,5 +1,5 @@
terraform {
required_version = ">= 0.15"
required_version = ">= 1.0.0"
required_providers {
tfe = {