From 7843f5c23e7f69ae754a9dd7be94dfca05f4afd4 Mon Sep 17 00:00:00 2001 From: Denis O Date: Tue, 19 Sep 2023 13:34:28 -0700 Subject: [PATCH] Fixed aws provider version for S3 test --- examples/terraform-aws-s3-example/main.tf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/examples/terraform-aws-s3-example/main.tf b/examples/terraform-aws-s3-example/main.tf index 93fa8713f..d5404a30e 100644 --- a/examples/terraform-aws-s3-example/main.tf +++ b/examples/terraform-aws-s3-example/main.tf @@ -11,6 +11,13 @@ terraform { # 0.12.26 as the minimum version, as that version added support for required_providers with source URLs, making it # forwards compatible with 0.13.x code. required_version = ">= 0.12.26" + required_providers { + aws = { + source = "hashicorp/aws" + # https://github.com/hashicorp/terraform-provider-aws/issues/33478 + version = "5.16.0" + } + } } # ---------------------------------------------------------------------------------------------------------------------