Files
Cibello-app/infrastructure/terraform/provider.tf
T
2026-08-11 21:31:02 +07:00

37 lines
601 B
Terraform

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"
}
}
}