Apply Configuration Args
data class ApplyConfigurationArgs(val expression: Output<String>? = null) : ConvertibleToJava<ApplyConfigurationArgs>
ApplyConfiguration defines the desired configuration values of an object.
Properties
Link copied to clipboard
expression will be evaluated by CEL to create an apply configuration. ref: https://github.com/google/cel-spec Apply configurations are declared in CEL using object initialization. For example, this CEL expression returns an apply configuration to set a single field: Object{ spec: Object.spec{ serviceAccountName: "example" } } Apply configurations may not modify atomic structs, maps or arrays due to the risk of accidental deletion of values not included in the apply configuration. CEL expressions have access to the object types needed to create apply configurations: