// Module included in the following assemblies: // // * microshift_configuring/microshift-config-snippets.adoc :_mod-docs-content-type: CONCEPT [id="microshift-example-config-snippets-objects_{context}"] = Example configuration snippets that are objects Objects are merged together when you use a configuration snippet. .Example `10-advertiseAddress.yaml` snippet [source,yaml] ---- apiServer: advertiseAddress: "microshift-example" ---- .Example `20-audit-log.yaml` snippet [source,yaml] ---- apiServer: auditLog: maxFileAge: 12 ---- .Example configuration result [source,yaml] ---- apiServer: advertiseAddress: "microshift-example" auditLog: maxFileAge: 12 ----