File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
tests/integration/targets/rds_instance_complex/tasks Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 4949 that :
5050 - result.changed
5151 - result.db_instance_identifier == instance_id
52- - ' "backup_retention_period" in result and result.backup_retention_period == 0'
52+ - ' "backup_retention_period" in result'
53+ - result.backup_retention_period | int == 0'
5354
5455 - name : Add IAM roles to mariab (should fail - iam roles not supported for mariadb)
5556 amazon.aws.rds_instance :
131132 - ' "port" in result.pending_modified_values or result.endpoint.port == 1150'
132133 - ' "db_instance_class" in result.pending_modified_values or result.db_instance_class == modified_db_instance_class'
133134 - ' "monitoring_interval" in result.pending_modified_values or result.monitoring_interval == monitoring_interval'
134- - ' "backup_retention_period" in result and result.backup_retention_period == 2'
135+ - ' "backup_retention_period" in result'
136+ - result.backup_retention_period | int == 0'
135137
136138 - name : Idempotence modifying several pending attributes - check_mode
137139 amazon.aws.rds_instance :
181183 - ' "max_allocated_storage" in result.pending_modified_values or result.max_allocated_storage == 150'
182184 - ' "port" in result.pending_modified_values or result.endpoint.port == 1150'
183185 - ' "db_instance_class" in result.pending_modified_values or result.db_instance_class == modified_db_instance_class'
184- - ' "backup_retention_period" in result and result.backup_retention_period == 2'
186+ - ' "backup_retention_period" in result'
187+ - result.backup_retention_period | int == 0'
185188
186189 always :
187190 - name : Delete the instance
You can’t perform that action at this time.
0 commit comments