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

11 lines
191 B
CUE
Raw Normal View History

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
}