Skip to content

Commit

Permalink
feat: add permissions for appstream
Browse files Browse the repository at this point in the history
Signed-off-by: ljohnny <[email protected]>
  • Loading branch information
ljohnny-git committed Dec 20, 2024
1 parent 0a313fe commit 429957a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,4 +189,6 @@ The audit policy is comprised of the following permissions:
| | aps:DescribeLoggingConfiguration | |
| | aps:DescribeWorkspace | |
| | aps:ListRuleGroupsNamespaces | |
| | aps:DescribeRuleGroupsNamespace | |
| | aps:DescribeRuleGroupsNamespace | |
| APPSTREAM | appstream:Describe* | |
| | appstream:List* | |
8 changes: 8 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,14 @@ data "aws_iam_policy_document" "lacework_audit_policy" {
]
resources = ["*"]
}

statement {
sid = "APPSTREAM"
actions = ["appstream:Describe*",
"appstream:List*",
]
resources = ["*"]
}
}

resource "aws_iam_policy" "lacework_audit_policy" {
Expand Down

0 comments on commit 429957a

Please sign in to comment.