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