ProviderRegistryAuthArgs

data class ProviderRegistryAuthArgs(val address: Output<String>, val authDisabled: Output<Boolean>? = null, val configFile: Output<String>? = null, val configFileContent: Output<String>? = null, val password: Output<String>? = null, val username: Output<String>? = null) : ConvertibleToJava<ProviderRegistryAuthArgs>

Constructors

Link copied to clipboard
constructor(address: Output<String>, authDisabled: Output<Boolean>? = null, configFile: Output<String>? = null, configFileContent: Output<String>? = null, password: Output<String>? = null, username: Output<String>? = null)

Properties

Link copied to clipboard
val address: Output<String>

Address of the registry

Link copied to clipboard
val authDisabled: Output<Boolean>? = null
Link copied to clipboard
val configFile: Output<String>? = null

Path to docker json file for registry auth. Defaults to ~/.docker/config.json. If DOCKER_CONFIG is set, the value of DOCKER_CONFIG is used as the path. config_file has predencen over all other options.

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

Plain content of the docker json file for registry auth. config_file_content has precedence over username/password.

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

Password for the registry. Defaults to DOCKER_REGISTRY_PASS env variable if set.

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

Username for the registry. Defaults to DOCKER_REGISTRY_USER env variable if set.

Functions

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