Backup unit

Example Syntax

    - name: Create backupunit
      ionoscloudsdk.ionoscloud.backupunit:
        backupunit_email: "{{ email }}"
        backupunit_password: "{{ password }}"
        name: "{{ name }}"

    - name: Update a backupunit
      ionoscloudsdk.ionoscloud.backupunit:
        backupunit_id: "{{backupunit.id}}"
        backupunit_email: "{{ updated_email }}"
        backupunit_password:  "{{ updated_password }}"
        state: update

    - name: Remove backupunit
      ionoscloudsdk.ionoscloud.backupunit:
        backupunit_id: "{{backupunit.id}}"
        state: absent

Parameter Reference

The following parameters are supported:

NameRequiredTypeDefaultDescription

name

yes/no

string

The resource name (only alphanumeric characters are acceptable). Only required when state = 'present'.

backupunit_email

yes/no

string

The email associated with the backup unit. This email does not have to be the same as the user's email. Only required when state = 'present'.

backupunit_password

yes/no

string

The password associated to that resource. Only required when state = 'present'.

backupunit_id

yes/no

string

The ID of the backupunit. Required when state = 'update' or state = 'absent'.

Last updated