infra: add aws providers and default tags

This commit is contained in:
Sven (AAMOS AI)
2026-08-11 21:31:02 +07:00
parent d3d485ffe8
commit cc948c258a
+36
View File
@@ -0,0 +1,36 @@
terraform {
required_version = ">= 1.5"
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.0"
}
tls = {
source = "hashicorp/tls"
version = "~> 4.0"
}
}
}
provider "aws" {
region = "eu-north-1"
default_tags {
tags = {
Project = "cibello"
Environment = "production"
ManagedBy = "terraform"
}
}
}
provider "aws" {
alias = "us_east_1"
region = "us-east-1"
default_tags {
tags = {
Project = "cibello"
Environment = "production"
ManagedBy = "terraform"
}
}
}