@ctfer-io/pulumi-ctfd
Version:
The CTFd provider for Pulumi, to manage its resources as code.
15 lines (14 loc) • 589 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
export declare function getChallengesStandard(opts?: pulumi.InvokeOptions): Promise<GetChallengesStandardResult>;
/**
* A collection of values returned by getChallengesStandard.
*/
export interface GetChallengesStandardResult {
readonly challenges: outputs.GetChallengesStandardChallenge[];
/**
* The ID of this resource.
*/
readonly id: string;
}
export declare function getChallengesStandardOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetChallengesStandardResult>;