This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/stdlib/aws/aws.cue
Sam Alba 64ab495c82 implemented aws.#Config and aws/cloudformation packages in stdlib
Signed-off-by: Sam Alba <sam.alba@gmail.com>
2021-03-03 17:33:19 -08:00

11 lines
191 B
CUE

package aws
#Config: {
// AWS region
region: string
// AWS access key
accessKey: string // FIXME: should be a secret
// AWS secret key
secretKey: string // FIXME: should be a secret
}