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
Andrea Luzzardi db2184262c Add dagger.#Secret to dagger spec.
This currently does nothing and is only useful for flagging secrets.

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
2021-03-10 15:14:39 -08:00

13 lines
176 B
CUE

package aws
import "dagger.io/dagger"
#Config: {
// AWS region
region: string
// AWS access key
accessKey: dagger.#Secret
// AWS secret key
secretKey: dagger.#Secret
}