Skip to content

Commit

Permalink
test simple fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dcmcand committed Oct 24, 2024
1 parent e37bc5c commit c33e2df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/_nebari/stages/infrastructure/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -557,8 +557,8 @@ def _check_input(cls, data: Any) -> Any:
)

# check if kms key is valid
available_kms_keys = amazon_web_services.kms_key_arns(data["region"])
if "eks_kms_arn" in data and data["eks_kms_arn"] is not None:
available_kms_keys = amazon_web_services.kms_key_arns(data["region"])
key_id = [
id for id in available_kms_keys.keys() if id in data["eks_kms_arn"]
]
Expand Down

0 comments on commit c33e2df

Please sign in to comment.