mirror of
https://github.com/timokz/flutter-vienna-hackathon-25.git
synced 2025-11-08 23:24:20 +01:00
17 lines
249 B
HCL
17 lines
249 B
HCL
# Terraform and AWS setup
|
|
|
|
terraform {
|
|
required_providers {
|
|
aws = {
|
|
source = "hashicorp/aws"
|
|
version = "~> 4.13"
|
|
}
|
|
}
|
|
|
|
required_version = ">= 1.1.9"
|
|
}
|
|
|
|
provider "aws" {
|
|
# profile = "default"
|
|
region = var.aws_region
|
|
}
|