7009d01835
Signed-off-by: Sam Alba <sam.alba@gmail.com>
16 lines
243 B
CUE
16 lines
243 B
CUE
package gcp
|
|
|
|
import (
|
|
"dagger.io/dagger"
|
|
)
|
|
|
|
// Base Google Cloud Config
|
|
#Config: {
|
|
// GCP region
|
|
region: string @dagger(input)
|
|
// GCP projcet
|
|
project: string @dagger(input)
|
|
// GCP service key
|
|
serviceKey: dagger.#Secret @dagger(input)
|
|
}
|