aws
Cloud services from AWS.
Provider Summary
total services: 4
total methods: 780
total methods: 780
total resources: 344
total selectable resources: 248
total selectable resources: 248
See also:
[SHOW
] [DESCRIBE
] [REGISTRY
]
Installation
REGISTRY PULL aws v23.01.00108;
Authentication
{
"aws": {
"type": string, // authentication type to use, suported values: aws_signing_v4
"keyID": string, // AWS_ACCESS_KEY_ID or expanded env var
"credentialsenvvar": string, // env var containing AWS_SECRET_ACCESS_KEY
}
}
Example (Mac/Linux)
AUTH="{ "aws": { "type": "aws_signing_v4", "credentialsenvvar": "AWS_SECRET_ACCESS_KEY", "keyID": "${AWS_ACCESS_KEY_ID}" }}"
stackql shell --auth="${AUTH}"
Example (PowerShell)
$Auth = "{ 'aws': { 'type': 'aws_signing_v4', 'credentialsenvvar': 'AWS_SECRET_ACCESS_KEY', 'keyID': '$Env.AWS_ACCESS_KEY_ID' }}"
stackql.exe shell --auth=$Auth