12 lines
269 B
Terraform
12 lines
269 B
Terraform
|
terraform {
|
||
|
# requires 1.3.0 for postcondition validation
|
||
|
# https://learn.hashicorp.com/tutorials/terraform/custom-conditions
|
||
|
required_version = "~> 1.3.0"
|
||
|
required_providers {
|
||
|
aws = {
|
||
|
source = "hashicorp/aws"
|
||
|
version = ">= 3.75.2"
|
||
|
}
|
||
|
}
|
||
|
}
|