implemented aws.#Config and aws/cloudformation packages in stdlib

Signed-off-by: Sam Alba <sam.alba@gmail.com>
This commit is contained in:
Sam Alba
2021-03-03 17:33:19 -08:00
parent 98a06c67d2
commit 64ab495c82
3 changed files with 219 additions and 0 deletions

10
stdlib/aws/aws.cue Normal file
View File

@@ -0,0 +1,10 @@
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
}