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 551c084 commit 8075257Copy full SHA for 8075257
terraform/account-wide-infrastructure/modules/glue/iam.tf
@@ -63,7 +63,6 @@ data "aws_iam_policy_document" "glue_service" {
63
64
resources = [
65
"arn:aws:logs:*:*:*:/aws-glue/*",
66
- # "arn:aws:logs:*:*:*:/customlogs/*"
67
]
68
69
effect = "Allow"
@@ -83,7 +82,9 @@ data "aws_iam_policy_document" "glue_service" {
83
82
84
statement {
85
actions = [
86
- "cloudwatch:*",
+ "cloudwatch:Get*",
+ "cloudwatch:List*",
87
+ "cloudwatch:Put*",
88
89
90
"*"
@@ -97,7 +98,7 @@ data "aws_iam_policy_document" "glue_service" {
97
98
99
100
- "*"
101
+ "arn:aws:iam::*:role/AWSGlueServiceRole*"
102
103
}
104
0 commit comments