@deploystack/docker-to-iac
Version:
Translate docker run and docker compose file to Infrastructure as Code
9 lines (8 loc) • 553 B
TypeScript
import { ApplicationConfig } from '../types/container-config';
import { ServiceConnectionsConfig, ResolvedServiceConnection } from '../types/service-connections';
/**
* Resolve service connections between components without provider-specific transformations
* This provides basic information about service connections that each parser can use
* to implement its own specific connection syntax
*/
export declare function resolveServiceConnections(config: ApplicationConfig, serviceConnections: ServiceConnectionsConfig): ResolvedServiceConnection[];