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
Guillaume de Rouville 46362ed247 Add zone in GCP.#Config
Signed-off-by: Guillaume de Rouville <guillaume.derouville@gmail.com>
2021-09-14 13:43:31 +02:00

19 lines
344 B
CUE

// Google Cloud Platform
package gcp
import (
"alpha.dagger.io/dagger"
)
// Base Google Cloud Config
#Config: {
// GCP region
region: dagger.#Input & {*null | string}
// GCP zone
zone: dagger.#Input & {*null | string}
// GCP project
project: dagger.#Input & {string}
// GCP service key
serviceKey: dagger.#Input & {dagger.#Secret}
}