13 lines
179 B
Terraform
13 lines
179 B
Terraform
|
terraform {
|
||
|
required_providers {
|
||
|
aws = {
|
||
|
source = "hashicorp/aws"
|
||
|
version = "~> 3.27"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
provider "aws" {
|
||
|
profile = "default"
|
||
|
region = var.region
|
||
|
}
|