From cc948c258ab49777ed6fcb80861e28b2a2d268b9 Mon Sep 17 00:00:00 2001 From: "Sven (AAMOS AI)" Date: Tue, 11 Aug 2026 21:31:02 +0700 Subject: [PATCH] infra: add aws providers and default tags --- infrastructure/terraform/provider.tf | 36 ++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 infrastructure/terraform/provider.tf diff --git a/infrastructure/terraform/provider.tf b/infrastructure/terraform/provider.tf new file mode 100644 index 0000000..9e31bbe --- /dev/null +++ b/infrastructure/terraform/provider.tf @@ -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" + } + } +}