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/gcp/gcp.cue
Sam Alba 9281967e16 stdlib: added package doc strings
Signed-off-by: Sam Alba <sam.alba@gmail.com>
2021-06-15 10:46:56 +02:00

17 lines
268 B
CUE

// Google Cloud Platform
package gcp
import (
"dagger.io/dagger"
)
// Base Google Cloud Config
#Config: {
// GCP region
region: string @dagger(input)
// GCP project
project: string @dagger(input)
// GCP service key
serviceKey: dagger.#Secret @dagger(input)
}