enso/test/AWS_Tests/data/credentials-with-secrets.datalink
Radosław Waśko 39af372bcd
Allow resolving enso:// URIs in Data.read and other places (#9225)
- Implements the core parts of #9048
- Currently the path resolution is done by resolving each segment, one by one - requiring as many API calls as there are segments in the path.
- This should be replaced in a followup PR, once https://github.com/enso-org/cloud-v2/issues/899 is implemented.
2024-03-02 16:04:30 +00:00

18 lines
424 B
Plaintext

{
"type": "S3",
"libraryName": "Standard.AWS",
"uri": "s3://enso-data-samples/examples/folder 2/hello.txt",
"auth": {
"type": "aws_auth",
"subType": "access_key",
"accessKeyId": {
"type": "secret",
"secretPath": "enso://USERNAME/datalink-secret-AWS-keyid"
},
"secretAccessKey": {
"type": "secret",
"secretPath": "enso://USERNAME/datalink-secret-AWS-secretkey"
}
}
}