From 18780816e58e8513947f6824b9eb9ea02f8a9743 Mon Sep 17 00:00:00 2001 From: nitramiz Date: Fri, 25 Sep 2020 13:51:32 -0700 Subject: [PATCH] tf: 0.13 + clightning 0.9.1 --- terraform/main.tf | 10 +++++++++- terraform/variables.tf | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/terraform/main.tf b/terraform/main.tf index e8ab66f..5a71a16 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -1,5 +1,13 @@ terraform { - required_version = "> 0.11.0" + required_providers { + google = { + source = "hashicorp/google" + } + google-beta = { + source = "hashicorp/google-beta" + } + } + required_version = ">= 0.13" backend "gcs" { bucket = "terraform-bs-source" diff --git a/terraform/variables.tf b/terraform/variables.tf index 7410e7f..4b900ab 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -202,7 +202,7 @@ variable "ionosphere_sse_docker" { # Less frequently updated images variable "lightning_docker" { type = string - default = "blockstream/lightningd@sha256:fd8fb1139fa480639670f9220ec3f9c08f64fbcd13067d930219dac521b8697d" + default = "blockstream/lightningd@sha256:baa37ddc2019af21c187052fe6b457d7c604de512c209fc494efebecfb7a24ab" } variable "charge_docker" {