-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Auth interface? #73
Comments
This is not urgent to get down soon - just recording thoughts while they're fresh. ping @seankross - any other ideas? do you like either one of these, or niether? What i'd like to see is one of the following with the goal of having a good user experience wrt knowing what auth is being used: .onLoadin a function library(sixtyfour)
#> <sixtyfour aws credentials>
#> location: env vars # or could be: ~/.aws/credentials, ~/.aws/config, etc.
#> profile (if any): TEST
#> region: us-west-2 cli pkg message on first use of a fxn that requires aws authInstead of using onload - or maybe in addition to? - we could print auth details similar to above - but only:
for example: aws_buckets()
#> <creds- location: ~/.aws/config, profile: TEST, region: us-west-2>
#>
#> # A tibble: 6 × 8
#> bucket_name key uri size type owner etag last_modified
#> <chr> <chr> <chr> <fs::bytes> <chr> <chr> <chr> <dttm>
#> 1 bucketcipjeuvd "" s3://bucketcipjeuvd 0 bucket "" "" NA
#> 2 bucketrcktxshl "" s3://bucketrcktxshl 0 bucket "" "" NA |
Do you know how other packages handle this? |
i'll have a look |
|
paws doesn't really have anything that's user facing for peeking at auth creds, which auth is being used, etc. might be worth a user facing function for this
The text was updated successfully, but these errors were encountered: