Skip to content

Commit

Permalink
Fixed AWS provider to version 4.x
Browse files Browse the repository at this point in the history
  • Loading branch information
denis256 committed Jun 28, 2023
1 parent 3e59462 commit ed1e063
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions examples/terraform-aws-rds-example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,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"
version = ">= 4.61.0, < 5.0.0"
}
}
}

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

0 comments on commit ed1e063

Please sign in to comment.