Files
a13labs.infra/terraform/iac/aws/provider.tf
T

15 lines
215 B
Terraform
Raw Normal View History

terraform {
required_version = ">1.9"
required_providers {
aws = {
source = "hashicorp/aws"
version = "~>5.70"
}
}
}
# Configure the AWS Provider
provider "aws" {
region = var.region
}