wrong module name

pull/743/head
Austin Lucas Lake 2024-05-05 02:24:01 -07:00
parent 440acfd047
commit 60b21757ea
No known key found for this signature in database
GPG Key ID: 6A37FA54CFCFA4DB
1 changed files with 3 additions and 3 deletions

View File

@ -3,21 +3,21 @@
# and should not be used as examples of how to write Ansible roles #
####################################################################
# Test code for the github_issue module.
# Test code for the gpg_keypair module.
#
# Copyright (c) 2024, Austin Lucas Lake <53884490+austinlucaslake@users.noreply.github.com>
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
- name: Create GPG key
github_gpg_key:
gpg_keypair:
name: "{{ name }}"
comment: "{{ comment }}"
email: "{{ email }}"
register: created_gpg_key
- name: Delete GPG key
github_gpg_key:
gpg_keypair:
state: absent
name: "{{ name }}"
comment: "{{ comment }}"