ansible/test/integration/targets/rds_instance/tasks/test_snapshot.yml
Oliver Kastler 0760a7ec08
Fix for shared snapshot parameter (#60250)
* Fix for shared snapshot parameter

Fixing this bug:
`Unknown parameter in input: "IsShared", must be one of: DBInstanceIdentifier, DBSnapshotIdentifier, SnapshotType, Filters, MaxRecords, Marker, IncludeShared, IncludePublic, DbiResourceId`

* Updated documentation for shared snapshots

Tags can't get accessed for shared snapshots

* fixed indentation

* added test for shared snapshot

* fixed isPublic parameter to correct IncludePublic parameter

Co-authored-by: Oliver Kastler <oliver@realestate.co.nz>
2020-02-14 19:05:40 -07:00

85 lines
2.6 KiB
YAML

---
- block:
- name: set up aws connection info
set_fact:
aws_connection_info: &aws_connection_info
aws_access_key: "{{ aws_access_key }}"
aws_secret_key: "{{ aws_secret_key }}"
security_token: "{{ security_token }}"
region: "{{ aws_region }}"
no_log: yes
- name: Getting shared snapshots
rds_snapshot_info:
snapshot_type: "shared"
<<: *aws_connection_info
register: result
- assert:
that:
- not result.changed
- result.cluster_snapshots is defined
- result.snapshots is defined
- name: Ensure the resource doesn't exist
rds_instance:
db_instance_identifier: "{{ instance_id }}"
state: absent
skip_final_snapshot: True
<<: *aws_connection_info
register: result
- assert:
that:
- not result.changed
ignore_errors: yes
- name: Create a mariadb instance
rds_instance:
db_instance_identifier: "{{ instance_id }}"
state: present
engine: mariadb
username: "{{ username }}"
password: "{{ password }}"
db_instance_class: "{{ db_instance_class }}"
allocated_storage: "{{ allocated_storage }}"
tags:
Name: "{{ instance_id }}"
Created_by: Ansible rds_instance tests
<<: *aws_connection_info
register: result
- assert:
that:
- result.changed
- "result.db_instance_identifier == '{{ instance_id }}'"
- "result.tags | length == 2"
- "result.tags.Name == '{{ instance_id }}'"
- "result.tags.Created_by == 'Ansible rds_instance tests'"
- name: Getting public snapshots
rds_snapshot_info:
db_instance_identifier: "{{ instance_id }}"
snapshot_type: "public"
<<: *aws_connection_info
register: result
- assert:
that:
- not result.changed
- result.cluster_snapshots is not defined
- result.snapshots is defined
- name: Ensure the resource doesn't exist
rds_instance:
db_instance_identifier: "{{ instance_id }}"
state: absent
skip_final_snapshot: True
<<: *aws_connection_info
register: result
- assert:
that:
- result.changed
# TODO ideally we test with an actual shared snapshot - but we'd need a second account - making tests fairly complicated?