AppIngress

data class AppIngress(val allowInsecureConnections: Boolean? = null, val customDomain: AppIngressCustomDomain? = null, val exposedPort: Int? = null, val externalEnabled: Boolean? = null, val fqdn: String? = null, val targetPort: Int, val trafficWeights: List<AppIngressTrafficWeight>, val transport: String? = null)

Constructors

Link copied to clipboard
fun AppIngress(allowInsecureConnections: Boolean? = null, customDomain: AppIngressCustomDomain? = null, exposedPort: Int? = null, externalEnabled: Boolean? = null, fqdn: String? = null, targetPort: Int, trafficWeights: List<AppIngressTrafficWeight>, transport: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Should this ingress allow insecure connections?

Link copied to clipboard

One or more custom_domain block as detailed below.

Link copied to clipboard
val exposedPort: Int? = null

The exposed port on the container for the Ingress traffic.

Link copied to clipboard

Are connections to this Ingress from outside the Container App Environment enabled? Defaults to false.

Link copied to clipboard
val fqdn: String? = null

The FQDN of the ingress.

Link copied to clipboard

The target port on the container for the Ingress traffic.

Link copied to clipboard

A traffic_weight block as detailed below.

Link copied to clipboard
val transport: String? = null

The transport method for the Ingress. Possible values are auto, http, http2 and tcp. Defaults to auto.