//#region src/types/terraform.d.ts interface ResourceBody { [key: string]: string | boolean | number | ResourceBody | ResourceBody[]; } interface Resource { type: string; name: string; body: ResourceBody; } interface TerraformContext { command: "terraform" | "tofu" | "terragrunt"; resources: Resource[]; [key: string]: any; } //#endregion export { ResourceBody as n, TerraformContext as r, Resource as t }; //# sourceMappingURL=terraform-BgQMhrcm.d.mts.map