Skip to content

Commit d18bfed

Browse files
authored
feat: Add missed tags (#241)
1 parent 42320bf commit d18bfed

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

replication.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ resource "aws_iam_role" "replication" {
44
name = format("%s-replication", module.this.id)
55
assume_role_policy = data.aws_iam_policy_document.replication_sts[0].json
66
permissions_boundary = var.s3_replication_permissions_boundary_arn
7+
8+
tags = module.this.tags
79
}
810

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

2931
name = format("%s-replication", module.this.id)
3032
policy = data.aws_iam_policy_document.replication[0].json
33+
34+
tags = module.this.tags
3135
}
3236

3337
data "aws_iam_policy_document" "replication" {

0 commit comments

Comments
 (0)