From 234326d3dee3779284d1f80af993555cee9417b5 Mon Sep 17 00:00:00 2001 From: Sarah Wooders Date: Wed, 18 Oct 2023 20:14:02 -0700 Subject: [PATCH] fix aws auth bug --- skyplane/api/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skyplane/api/config.py b/skyplane/api/config.py index b65e820ac..4fe19726f 100644 --- a/skyplane/api/config.py +++ b/skyplane/api/config.py @@ -20,7 +20,7 @@ class AWSConfig(AuthenticationConfig): aws_enabled: bool = True def make_auth_provider(self) -> compute.AWSAuthentication: - return compute.AWSAuthentication(config=self) # type: ignore + return compute.AWSAuthentication(config=self, access_key=self.aws_access_key, secret_key=self.aws_secret_key) # type: ignore @dataclass