11 lines
191 B
CUE
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
|
||
|
}
|