#cloud-config
# vim: syntax=yaml
#
# Add zypper repository configuration to the system
#
# The following example adds the file /etc/zypp/repos.d/Test_Repo.repo
# which can then subsequently be used by zypper for later operations.
zypp_repos:
    # The name of the repository
    "Test Repo":
        # Any repository configuration options
        name: Extra Packages for Testing
        enabled: true
        autorefresh: true
        keeppackages: false
        baseurl: http://download.example.com/ibs/TEST/1.0/standard/
        gpgcheck: true
        gpgkey: http://download.example.com/ibs/TEST/1.0/standard/repodata/repomd.xml.key
