You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform-aws-pre-base/terraform.meta.tf

22 lines
415 B
HCL

terraform {
required_version = "~> 1.6.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.19.0"
}
}
}
provider "aws" {
region = var.aws_region
default_tags {
tags = {
"ManagedBy" = "iac/terraform"
"iac/environment" = "global"
"iac/component" = "pre-base"
"iac/source" = "${trimsuffix(var.git_project, "/")}"
}
}
}