fix(iam): use get to get the key (#5785)

This commit is contained in:
Pedro Martín
2024-11-15 14:37:36 +01:00
committed by GitHub
parent b6c8adfc64
commit 005d251106
@@ -34,7 +34,7 @@ class IAM(GCPService):
ServiceAccount(
name=account["name"],
email=account["email"],
display_name=account["displayName"],
display_name=account.get("displayName", ""),
project_id=project_id,
)
)