cuemata/examples/pulumi-time/BUILD.bazel
Hoang Nguyen bd9eb75787
Rename project to cuemata
* Bring golangci-lint back
* Switch back to flake-utils, since the flake is rather small

and various other improvements.
2024-03-15 00:00:00 +07:00

19 lines
446 B
Python

# SPDX-FileCopyrightText: 2023 Hoang Nguyen <folliekazetani@protonmail.com>
#
# SPDX-License-Identifier: Apache-2.0
load("@rules_cue//cue:cue.bzl", "cue_consolidated_files")
# This target creates a Pulumi.yaml file suitable for pulumi CLI to use
cue_consolidated_files(
name = "Pulumi",
srcs = [
"main.cue",
],
module = "//cue.mod:cuemata",
output_format = "yaml",
deps = [
"//schemata/pulumi",
],
)