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.
16 lines
600 B
YAML
16 lines
600 B
YAML
6 years ago
|
---
|
||
|
# ============================================================
|
||
|
# Release a lock obtained using obtain-lock.yaml
|
||
|
# This should be included in the always clause of a block to
|
||
|
# ensure the lock is released. See obtain-lock.yaml for more
|
||
|
# details of how the locking works.
|
||
|
# ============================================================
|
||
|
|
||
|
- cloudwatchlogs_log_group:
|
||
|
log_group_name: "{{ lock_attempt_log_group_name }}"
|
||
|
state: absent
|
||
|
aws_access_key: "{{ aws_access_key }}"
|
||
|
aws_secret_key: "{{ aws_secret_key }}"
|
||
|
security_token: "{{ security_token }}"
|
||
|
region: "{{ aws_region }}"
|