Skip to content

Commit c0ccfb8

Browse files
authored
feat: add permissions for appstream (#123)
Signed-off-by: ljohnny <ljohnny@fortinet.com>
1 parent 0a313fe commit c0ccfb8

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,4 +189,6 @@ The audit policy is comprised of the following permissions:
189189
| | aps:DescribeLoggingConfiguration | |
190190
| | aps:DescribeWorkspace | |
191191
| | aps:ListRuleGroupsNamespaces | |
192-
| | aps:DescribeRuleGroupsNamespace | |
192+
| | aps:DescribeRuleGroupsNamespace | |
193+
| APPSTREAM | appstream:Describe* | |
194+
| | appstream:List* | |

main.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,14 @@ data "aws_iam_policy_document" "lacework_audit_policy" {
262262
]
263263
resources = ["*"]
264264
}
265+
266+
statement {
267+
sid = "APPSTREAM"
268+
actions = ["appstream:Describe*",
269+
"appstream:List*",
270+
]
271+
resources = ["*"]
272+
}
265273
}
266274

267275
resource "aws_iam_policy" "lacework_audit_policy" {

0 commit comments

Comments
 (0)