@ctfer-io/pulumi-ctfd
Version:
The CTFd provider for Pulumi, to manage its resources as code.
22 lines (21 loc) • 589 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
export interface ChallengeDynamicRequirements {
/**
* Behavior if not unlocked, either hidden or anonymized.
*/
behavior?: pulumi.Input<string>;
/**
* List of the challenges ID.
*/
prerequisites?: pulumi.Input<pulumi.Input<string>[]>;
}
export interface ChallengeStandardRequirements {
/**
* Behavior if not unlocked, either hidden or anonymized.
*/
behavior?: pulumi.Input<string>;
/**
* List of the challenges ID.
*/
prerequisites?: pulumi.Input<pulumi.Input<string>[]>;
}