Skip to content

Commit 0cc7124

Browse files
committed
chore: add managedBy terraform tag to all resources
1 parent 37ebd66 commit 0cc7124

File tree

4 files changed

+25
-0
lines changed

4 files changed

+25
-0
lines changed

deployment/environments/production/main.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ terraform {
1010

1111
provider "aws" {
1212
region = "us-east-2"
13+
default_tags {
14+
tags = {
15+
ManagedBy = "Terraform"
16+
AppName = "Indexer"
17+
}
18+
}
1319
}
1420

1521

deployment/environments/staging/main.tf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ terraform {
1010

1111
provider "aws" {
1212
region = "us-east-2"
13+
default_tags {
14+
tags = {
15+
ManagedBy = "Terraform"
16+
AppName = "Indexer"
17+
18+
}
19+
}
1320
}
1421

1522

deployment/registry/main.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
provider "aws" {
22
region = var.AWS_REGION
3+
default_tags {
4+
tags = {
5+
ManagedBy = "Terraform"
6+
AppName = "Indexer"
7+
}
8+
}
39
}
410

511
module "container_registry" {

deployment/state/main.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
provider "aws" {
22
region = var.AWS_REGION
3+
default_tags {
4+
tags = {
5+
ManagedBy = "Terraform"
6+
AppName = "Indexer"
7+
}
8+
}
39
}
410
data "aws_caller_identity" "current" {}
511

0 commit comments

Comments
 (0)