UNPKG

@ctfer-io/pulumi-ctfd

Version:

The CTFd provider for Pulumi, to manage its resources as code.

15 lines (14 loc) 582 B
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getChallengesDynamic(opts?: pulumi.InvokeOptions): Promise<GetChallengesDynamicResult>; /** * A collection of values returned by getChallengesDynamic. */ export interface GetChallengesDynamicResult { readonly challenges: outputs.GetChallengesDynamicChallenge[]; /** * The ID of this resource. */ readonly id: string; } export declare function getChallengesDynamicOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetChallengesDynamicResult>;