stdlib: add GKE support

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
Andrea Luzzardi
2021-05-19 16:34:11 -07:00
parent c9da1088b1
commit 5bd3349a27
6 changed files with 229 additions and 3 deletions

15
stdlib/gcp/gcp.cue Normal file
View File

@@ -0,0 +1,15 @@
package gcp
import (
"dagger.io/dagger"
)
// Base Google Cloud Config
#Config: {
// GCP region
region: string
// GCP projcet
project: string
// GCP service key
serviceKey: dagger.#Secret
}