Skip to content
Snippets Groups Projects
argument_specs.yml 41.9 KiB
Newer Older
Chris Croome's avatar
Chris Croome committed
        elements: dict
        required: true
        description: A list of distros and deb packages that should be absent and present.
        options:
          name:
            type: str
            required: true
            description: The Linux distro name.
            choices:
              - bookworm
              - noble
              - trixie
          pkgs_absent:
            type: list
            required: false
            description: A list of deb packages that should be absent.
          pkgs_present:
            type: list
            required: false
            description: A list of deb packages that should be present.
          pkgs_present_backports:
            type: list
Chris Croome's avatar
Chris Croome committed
            required: true
Chris Croome's avatar
Chris Croome committed
            description: A list of deb packages that should be present from backports.
Chris Croome's avatar
Chris Croome committed
      valkey_protected_configs:
        type: list
        required: false
        description: A list of Valkey config to be editing using lineinfile.
Chris Croome's avatar
Chris Croome committed
      valkey_verify:
        type: bool
        required: true
        description: Use the argument specification to verify the variables that start with valkey_.
Chris Croome's avatar
Chris Croome committed
...