API/api.medcify.app/node_modules/snyk/dist/lib/iac/constants.d.ts

16 lines
655 B
TypeScript
Raw Normal View History

2022-09-26 06:11:44 +00:00
import { ParserFileType } from '@snyk/cloud-config-parser';
export declare type IacProjectTypes = 'k8sconfig' | 'terraformconfig' | 'cloudformationconfig' | 'armconfig' | 'customconfig' | 'multiiacconfig';
export declare type IacFileTypes = ParserFileType | 'tf' | 'tfvars';
export declare enum IacProjectType {
K8S = "k8sconfig",
TERRAFORM = "terraformconfig",
CLOUDFORMATION = "cloudformationconfig",
ARM = "armconfig",
CUSTOM = "customconfig",
MULTI_IAC = "multiiacconfig"
}
export declare const TEST_SUPPORTED_IAC_PROJECTS: IacProjectTypes[];
export declare const iacRemediationTypes: {
[k in IacProjectTypes]?: string;
};