Custom Registry Credentials Args
data class CustomRegistryCredentialsArgs(val identity: Output<String>? = null, val password: Output<SecretObjectArgs>? = null, val userName: Output<SecretObjectArgs>? = null) : ConvertibleToJava<CustomRegistryCredentialsArgs>
Describes the credentials that will be used to access a custom registry during a run.
Constructors
Link copied to clipboard
fun CustomRegistryCredentialsArgs(identity: Output<String>? = null, password: Output<SecretObjectArgs>? = null, userName: Output<SecretObjectArgs>? = null)
Functions
Properties
Link copied to clipboard
Indicates the managed identity assigned to the custom credential. If a user-assigned identity this value is the Client ID. If a system-assigned identity, the value will be system
. In the case of a system-assigned identity, the Client ID will be determined by the runner. This identity may be used to authenticate to key vault to retrieve credentials or it may be the only source of authentication used for accessing the registry.
Link copied to clipboard