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 5fd0284 commit d8f37eeCopy full SHA for d8f37ee
terraform/account-wide-infrastructure/modules/glue/glue.tf
@@ -68,7 +68,7 @@ resource "aws_glue_job" "glue_job" {
68
worker_type = "G.1X"
69
timeout = 2880
70
max_retries = 0
71
- number_of_workers = 2
+ number_of_workers = 4
72
command {
73
name = "glueetl"
74
python_version = var.python_version
terraform/account-wide-infrastructure/modules/glue/iam.tf
@@ -81,6 +81,16 @@ data "aws_iam_policy_document" "glue_service" {
81
effect = "Allow"
82
}
83
84
+ statement {
85
+ actions = [
86
+ "cloudwatch:*",
87
+ ]
88
+ resources = [
89
+ "*"
90
91
+ effect = "Allow"
92
+ }
93
+
94
statement {
95
actions = [
96
"iam:PassRole",
0 commit comments