mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
395 B
YAML
17 lines
395 B
YAML
7 years ago
|
- hosts: localhost
|
||
|
connection: local
|
||
|
|
||
|
tasks:
|
||
|
- name: try and use aws_eks_cluster module
|
||
|
aws_eks_cluster:
|
||
|
state: absent
|
||
|
name: my_cluster
|
||
|
ignore_errors: yes
|
||
|
register: aws_eks_cluster
|
||
|
|
||
|
- name: ensure that aws_eks fails with friendly error message
|
||
|
assert:
|
||
|
that:
|
||
|
- '"msg" in aws_eks_cluster'
|
||
|
- aws_eks_cluster is failed
|