Package version:

Interface IngressPortMapping

Port mappings of container app ingress

interface IngressPortMapping {
    exposedPort?: number;
    external: boolean;
    targetPort: number;
}

Properties

exposedPort?: number

Specifies the exposed port for the target port. If not specified, it defaults to target port

external: boolean

Specifies whether the app port is accessible outside of the environment

targetPort: number

Specifies the port user's container listens on