chmury/labs/terraform/provider.tf

13 lines
178 B
Terraform
Raw Normal View History

terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.0"
}
}
}
provider "aws" {
profile = "default"
region = var.region
}