We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0c8f39 commit 26f8b37Copy full SHA for 26f8b37
1 file changed
terraform/modules/spack_github/mirrors_iam.tf
@@ -40,14 +40,14 @@ resource "aws_iam_role" "update_source_mirror" {
40
41
data "aws_iam_policy_document" "update_source_mirror" {
42
statement {
43
- effect = "Allow"
44
- actions = ["s3:PutObject", "s3:ListBucket"]
+ effect = "Allow"
+ actions = ["s3:PutObject", "s3:ListBucket"]
45
resources = ["${data.aws_s3_bucket.source_mirror}/*"]
46
}
47
48
49
resource "aws_iam_policy" "update_source_mirror" {
50
- name = "UpdateSourceMirror"
+ name = "UpdateSourceMirror"
51
policy = data.aws_iam_policy_document.update_source_mirror.json
52
53
0 commit comments