From 6558c9981f67e499410577aaa5ca5598823fbc51 Mon Sep 17 00:00:00 2001 From: Max Juhlke Date: Mon, 8 May 2023 19:46:10 +0200 Subject: [PATCH] fix typo in `terraform` docs (#6503) fix typo The [Docs](https://docs.ansible.com/ansible/latest/collections/community/general/terraform_module.html) have a typo in the examples. `camplex_vars` should be spelled `complex_vars`. Since many people are copy-and-pasting from docs and modify them to their needs this typo is an annoyance for users. --- plugins/modules/terraform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/terraform.py b/plugins/modules/terraform.py index 554bb48f8b..f9f809220b 100644 --- a/plugins/modules/terraform.py +++ b/plugins/modules/terraform.py @@ -218,7 +218,7 @@ EXAMPLES = """ community.general.terraform: project_path: '{{ project_dir }}' state: present - camplex_vars: true + complex_vars: true variables: vm_name: "{{ inventory_hostname }}" vm_vcpus: 2