Skip to content

Commit 9445159

Browse files
committed
[Feat]: Add Infrastructure
1 parent b96586c commit 9445159

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

infrastructure/provider.tf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
terraform {
2+
required_providers {
3+
aws = {
4+
source = "hashicorp/aws"
5+
version = "5.30.0"
6+
}
7+
}
8+
}
9+
10+
provider "aws" {
11+
region = var.default_region
12+
}

infrastructure/variables.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
variable "default_region" {
2+
type = string
3+
description = "Default Region for AWS Services"
4+
default = "us-west-2"
5+
}

0 commit comments

Comments
 (0)