-
Notifications
You must be signed in to change notification settings - Fork 0
/
versions.tf
24 lines (23 loc) · 1.03 KB
/
versions.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
terraform {
# If you use any other providers you should also pin them to the
# major version currently being used. This practice will help us
# avoid unwelcome surprises.
required_providers {
# Version 4.9 of the Terraform AWS provider made changes to the S3 bucket
# refactor that is in place for versions 4.0-4.8 of the provider. With v4.9
# only non-breaking changes and deprecation notices are introduced. Using
# this version will simplify migration to the new, broken out AWS S3 bucket
# configuration resources. Please see
# https://github.com/hashicorp/terraform-provider-aws/pull/23985
# for more information about the changes in v4.9 and
# https://www.hashicorp.com/blog/terraform-aws-provider-4-0-refactors-s3-bucket-resource
# for more information about the S3 bucket refactor.
aws = {
source = "hashicorp/aws"
version = ">= 4.9"
}
}
# Version 1.1 of Terraform is the first version to support the
# nullable key in variable definitions.
required_version = ">= 1.1"
}