mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-24 04:51:51 +00:00
fix(glue): add getters for connection attributes (#4445)
This commit is contained in:
@@ -42,9 +42,9 @@ class Glue(AWSService):
|
||||
self.connections.append(
|
||||
Connection(
|
||||
arn=arn,
|
||||
name=conn["Name"],
|
||||
type=conn["ConnectionType"],
|
||||
properties=conn["ConnectionProperties"],
|
||||
name=conn.get("Name", ""),
|
||||
type=conn.get("ConnectionType", ""),
|
||||
properties=conn.get("ConnectionProperties", {}),
|
||||
region=regional_client.region,
|
||||
)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user