Skip to content

Commit

Permalink
feat: Add missed tags (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxymVlasov authored Aug 7, 2024
1 parent 42320bf commit d18bfed
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions replication.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ resource "aws_iam_role" "replication" {
name = format("%s-replication", module.this.id)
assume_role_policy = data.aws_iam_policy_document.replication_sts[0].json
permissions_boundary = var.s3_replication_permissions_boundary_arn

tags = module.this.tags
}

data "aws_iam_policy_document" "replication_sts" {
Expand All @@ -28,6 +30,8 @@ resource "aws_iam_policy" "replication" {

name = format("%s-replication", module.this.id)
policy = data.aws_iam_policy_document.replication[0].json

tags = module.this.tags
}

data "aws_iam_policy_document" "replication" {
Expand Down

0 comments on commit d18bfed

Please sign in to comment.