Skip to content

Commit

Permalink
fix aws auth bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahwooders committed Oct 19, 2023
1 parent e362206 commit 234326d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skyplane/api/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 234326d

Please sign in to comment.