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/cloudrun/tests/cloudrun.cue
Tihomir Jovicic c2442120ca update cloudrun imports to use alpha.dagger.io
Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com>
2021-07-01 09:23:47 +02:00

15 lines
271 B
CUE

package cloudrun
import (
"alpha.dagger.io/gcp"
"alpha.dagger.io/gcp/cloudrun"
)
TestConfig: gcpConfig: gcp.#Config
TestCloudRun: deploy: cloudrun.#Service & {
config: TestConfig.gcpConfig
name: "cloudrun-test"
image: "gcr.io/dagger-ci/cloudrun-test:latest"
}