db2184262c
This currently does nothing and is only useful for flagging secrets. Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
13 lines
176 B
CUE
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
|
|
}
|