terraform.aws-baseline-infra/modules/compute/ec2/provider.tf

11 lines
230 B
Terraform
Raw Normal View History

# aws plugin 5.0.0 or above is required to support domain attribute in aws_eip
terraform {
required_version = ">= 1.3.0"
required_providers {
aws = {
source = "hashicorp/aws"
2024-02-05 17:43:56 +08:00
version = "~> 5.35.0"
}
}
}