RegistryArgs

data class RegistryArgs(val password: Output<String>? = null, val server: Output<String>? = null, val username: Output<String>? = null) : ConvertibleToJava<RegistryArgs>

Describes a Docker container registry

Constructors

Link copied to clipboard
constructor(password: Output<String>? = null, server: Output<String>? = null, username: Output<String>? = null)

Properties

Link copied to clipboard
val password: Output<String>? = null

The password to authenticate to the registry. Does not cause image rebuild when changed.

Link copied to clipboard
val server: Output<String>? = null

The URL of the Docker registry server

Link copied to clipboard
val username: Output<String>? = null

The username to authenticate to the registry. Does not cause image rebuild when changed.

Functions

Link copied to clipboard
open override fun toJava(): RegistryArgs