Service Source Configuration Args
data class ServiceSourceConfigurationArgs(val authenticationConfiguration: Output<ServiceSourceConfigurationAuthenticationConfigurationArgs>? = null, val autoDeploymentsEnabled: Output<Boolean>? = null, val codeRepository: Output<ServiceSourceConfigurationCodeRepositoryArgs>? = null, val imageRepository: Output<ServiceSourceConfigurationImageRepositoryArgs>? = null) : ConvertibleToJava<ServiceSourceConfigurationArgs>
Constructors
Link copied to clipboard
constructor(authenticationConfiguration: Output<ServiceSourceConfigurationAuthenticationConfigurationArgs>? = null, autoDeploymentsEnabled: Output<Boolean>? = null, codeRepository: Output<ServiceSourceConfigurationCodeRepositoryArgs>? = null, imageRepository: Output<ServiceSourceConfigurationImageRepositoryArgs>? = null)
Properties
Link copied to clipboard
val authenticationConfiguration: Output<ServiceSourceConfigurationAuthenticationConfigurationArgs>? = null
Describes resources needed to authenticate access to some source repositories. See Authentication Configuration below for more details.
Link copied to clipboard
Whether continuous integration from the source repository is enabled for the App Runner service. If set to true
, each repository change (source code commit or new image version) starts a deployment. Defaults to true
.
Link copied to clipboard
Description of a source code repository. See Code Repository below for more details.
Link copied to clipboard
Description of a source image repository. See Image Repository below for more details.