Skip to content

Commit

Permalink
Fixed aws provider version for S3 test
Browse files Browse the repository at this point in the history
  • Loading branch information
denis256 committed Sep 19, 2023
1 parent 15cff8c commit 7843f5c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions examples/terraform-aws-s3-example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
}

# ---------------------------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit 7843f5c

Please sign in to comment.