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" 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" + } + } }