From ca78cf18beed5f487a2acdae1d61e0ec08e09fc3 Mon Sep 17 00:00:00 2001 From: Aaron Cimolini Date: Fri, 18 Feb 2022 09:08:46 -0800 Subject: [PATCH 1/2] Updates install docs to allow installation of latest bugfix version. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9ad4864..4b425b8 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ This module will create a bucket and assign it the proper ACLs to host a static ```HCL module "storage_static_website" { source = "jdpleiness/storage-static-website/google" - version = "2.0.0" + version = "~> 2.0.0" bucket_name = "your-website-domain-name" project_id = "your-project-id" From e16bd708f2504b494488d9ebd3a90899a2d52c39 Mon Sep 17 00:00:00 2001 From: Aaron Cimolini Date: Fri, 18 Feb 2022 09:09:39 -0800 Subject: [PATCH 2/2] Add google as required provider to allow alternate configs. --- versions.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/versions.tf b/versions.tf index 1d04ba4..848f00c 100644 --- a/versions.tf +++ b/versions.tf @@ -5,4 +5,10 @@ terraform { required_version = ">= 0.12" + + required_providers { + google = { + source = "hashicorp/google" + } + } }