We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42320bf commit d18bfedCopy full SHA for d18bfed
replication.tf
@@ -4,6 +4,8 @@ resource "aws_iam_role" "replication" {
4
name = format("%s-replication", module.this.id)
5
assume_role_policy = data.aws_iam_policy_document.replication_sts[0].json
6
permissions_boundary = var.s3_replication_permissions_boundary_arn
7
+
8
+ tags = module.this.tags
9
}
10
11
data "aws_iam_policy_document" "replication_sts" {
@@ -28,6 +30,8 @@ resource "aws_iam_policy" "replication" {
28
30
29
31
32
policy = data.aws_iam_policy_document.replication[0].json
33
34
35
36
37
data "aws_iam_policy_document" "replication" {
0 commit comments